None
**Instruments Affected**: NIRCam
This is the validation notebook that displays the regression tests for the NIRCam instrument in the JWST calibration pipeline. This notebook runs and displays the regression tests that are performed as a part of the normal software continuous integration process. For more information on the pipeline visit the links below.
Pipeline description: https://jwst-pipeline.readthedocs.io/en/latest/index.html
Pipeline code: https://github.com/spacetelescope/jwst
JWST regression tests are located in the regtest folder of the pipeline within the GitHub repository.
These are terms or acronymns used in this notebook that may not be known a general audience.
JWST: James Webb Space Telescope
NIRCam: Near-Infrared Camera
Regression testing is a software testing method which checks if the pipeline step produces the expected outcome by comparing an input file with a truth file. Truth files for testing are stored in Artifactory.
Data used for regression tests is stored in Artifactory, and consists of a mix of simulated and ground testing data for the different instruments and modes.
import os
if 'CRDS_CACHE_TYPE' in os.environ:
if os.environ['CRDS_CACHE_TYPE'] == 'local':
os.environ['CRDS_PATH'] = os.path.join(os.environ['HOME'], 'crds', 'cache')
elif os.path.isdir(os.environ['CRDS_CACHE_TYPE']):
os.environ['CRDS_PATH'] = os.environ['CRDS_CACHE_TYPE']
print('CRDS cache location: {}'.format(os.environ['CRDS_PATH']))
CRDS cache location: /grp/crds/cache
import tempfile
import os
import pytest
import jwst
from IPython.display import IFrame
from IPython.core.display import HTML
Here we define any convenience functions to help with running the unit tests.
print("Testing JWST Pipeline {}".format(jwst.__version__))
jwst_dir = os.path.dirname(jwst.__file__)
regtest = os.path.join(jwst_dir, 'regtest')
associations = os.path.join(jwst_dir, 'associations')
datamodels = os.path.join(jwst_dir, 'datamodels')
stpipe = os.path.join(jwst_dir, 'stpipe')
with tempfile.TemporaryDirectory() as tmpdir:
outdir = os.path.join(tmpdir, 'regtest_report.html')
!pytest --bigdata {regtest} -k 'test_nircam' -v --ignore={associations} --ignore={datamodels} --ignore={stpipe} --html={outdir} --self-contained-html
with open(os.path.join(tmpdir, "regtest_report.html")) as report_file:
html_report = "".join(report_file.readlines())
Testing JWST Pipeline 1.3.2 ============================= test session starts ============================== platform linux -- Python 3.9.9, pytest-6.2.5, py-1.11.0, pluggy-1.0.0 -- /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/bin/python cachedir: .pytest_cache metadata: {'Python': '3.9.9', 'Platform': 'Linux-3.10.0-1160.49.1.el7.x86_64-x86_64-with-glibc2.17', 'Packages': {'pytest': '6.2.5', 'py': '1.11.0', 'pluggy': '1.0.0'}, 'Plugins': {'asdf': '2.8.3', 'metadata': '1.11.0', 'jwst': '1.3.2', 'html': '3.1.1', 'ci-watson': '0.5'}, 'BUILD_NUMBER': '100', 'BUILD_ID': '100', 'BUILD_URL': 'https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/100/', 'NODE_NAME': 'jwcalibdev.stsci.edu', 'JOB_NAME': 'Notebooks/jwst_validation_notebooks_spacetelescope', 'BUILD_TAG': 'jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-100', 'EXECUTOR_NUMBER': '18', 'JENKINS_URL': 'https://plwishmaster.stsci.edu:8081/', 'WORKSPACE': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope', 'GIT_COMMIT': '904bd04dc6d740ccb300e309d1247490b5a321f5', 'GIT_URL': 'https://github.com/spacetelescope/jwst_validation_notebooks', 'GIT_BRANCH': 'origin/master'} rootdir: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope plugins: asdf-2.8.3, metadata-1.11.0, jwst-1.3.2, html-3.1.1, ci-watson-0.5 collected 470 items / 413 deselected / 57 selected ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] PASSED [ 1%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002003_01101_00009] PASSED [ 3%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002004_01101_00013] PASSED [ 5%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] PASSED [ 7%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] PASSED [ 8%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] PASSED [ 10%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] PASSED [ 12%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] PASSED [ 14%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] PASSED [ 15%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] PASSED [ 17%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] PASSED [ 19%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] PASSED [ 21%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] PASSED [ 22%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED [ 24%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] PASSED [ 26%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] PASSED [ 28%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] PASSED [ 29%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] PASSED [ 31%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] FAILED [ 33%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] PASSED [ 35%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] FAILED [ 36%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] FAILED [ 38%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] FAILED [ 40%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] FAILED [ 42%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] FAILED [ 43%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] FAILED [ 45%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs PASSED [ 47%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg PASSED [ 49%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d] FAILED [ 50%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog FAILED [ 52%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm FAILED [ 54%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED [ 56%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED [ 57%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED [ 59%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] ERROR [ 59%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] PASSED [ 61%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED [ 63%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] ERROR [ 63%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] FAILED [ 64%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] FAILED [ 66%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[trapsfilled] PASSED [ 68%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] PASSED [ 70%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] PASSED [ 71%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] PASSED [ 73%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] PASSED [ 75%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] PASSED [ 77%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] PASSED [ 78%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints PASSED [ 80%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt PASSED [ 82%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing SKIPPED [ 84%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] PASSED [ 85%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] PASSED [ 87%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot PASSED [ 89%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing SKIPPED [ 91%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nicam_wfsimage_noextras PASSED [ 92%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] PASSED [ 94%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] PASSED [ 96%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] PASSED [ 98%] ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] PASSED [100%] ==================================== ERRORS ==================================== _ ERROR at call of test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] _ input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T14:52:00.650', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". _____ ERROR at call of test_nircam_image_moving_target_kwds[with_mt_table] _____ input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T19:49:25.405', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[with_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". =================================== FAILURES =================================== _______________________ test_nircam_coron3_product[i2d] ________________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aac29ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 ____________________ test_nircam_image_stages12[linearity] _____________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'linearity' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_linearity.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_linearity.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [2, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [3, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [4, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [5, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [6, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [7, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [8, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [9, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [10, 1]: E a> 2147483648 E b> 2148532224 E ... E 32704 different pixels found (0.78% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f7196224ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 ___________________ test_nircam_image_stages12[dark_current] ___________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes... 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'dark_current' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_dark_current.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_dark_current.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [2, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [3, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [4, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [5, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [6, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [7, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [8, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [9, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [10, 1]: E a> 2147483648 E b> 2148532224 E ... E 32704 different pixels found (0.78% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aa8f4ee0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 _______________________ test_nircam_image_stages12[jump] _______________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...p.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'jump' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_jump.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_jump.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [2, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [3, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [4, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [5, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [6, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [7, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [8, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [9, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [10, 1]: E a> 2148007937 E b> 2149056513 E ... E 32704 different pixels found (0.78% different). E E Extension HDU 3 (GROUPDQ, 1): E E Data contains differences: E Data differs at [1481, 43, 2, 1]: E a> 4 E b> 0 E Data differs at [1480, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1481, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1482, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1481, 45, 2, 1]: E a> 4 E b> 0 E Data differs at [1102, 84, 2, 1]: E a> 4 E b> 0 E Data differs at [577, 215, 2, 1]: E a> 4 E b> 0 E Data differs at [576, 216, 2, 1]: E a> 4 E b> 0 E Data differs at [577, 216, 2, 1]: E a> 4 E b> 0 E Data differs at [578, 216, 2, 1]: E a> 4 E b> 0 E ... E 3107 different pixels found (0.01% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aa81b1f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 _______________________ test_nircam_image_stages12[rate] _______________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...e.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'rate' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.09238005 E b> 0.33594248 E Data differs at [920, 16]: E a> 0.056724414 E b> 0.1935022 E Data differs at [1055, 20]: E a> 0.37814838 E b> 0.38378802 E Data differs at [1054, 21]: E a> 0.37910748 E b> 0.34302482 E Data differs at [1056, 21]: E a> 0.41687128 E b> 0.38733527 E Data differs at [1055, 22]: E a> 0.30666345 E b> 0.31734806 E Data differs at [2043, 22]: E a> 0.28503218 E b> 0.34773624 E Data differs at [1779, 36]: E a> 0.23533231 E b> 0.1855497 E Data differs at [1481, 43]: E a> 0.53551793 E b> 0.5769514 E Data differs at [1480, 44]: E a> 0.41647816 E b> 0.4935196 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.07006138 E b> 0.057124384 E Data differs at [1054, 21]: E a> 0.06659893 E b> 0.054149494 E Data differs at [1056, 21]: E a> 0.07134524 E b> 0.05426281 E Data differs at [1055, 22]: E a> 0.059815638 E b> 0.04884776 E Data differs at [1481, 43]: E a> 0.06990669 E b> 0.06221565 E Data differs at [1480, 44]: E a> 0.069740646 E b> 0.05905149 E Data differs at [1481, 44]: E a> 0.33369657 E b> 0.31822476 E Data differs at [1482, 44]: E a> 0.0757161 E b> 0.0653277 E Data differs at [1481, 45]: E a> 0.070008025 E b> 0.059815764 E Data differs at [395, 52]: E a> 0.074955285 E ? ^^^ E b> 0.06554285 E ? ^ + E ... E 653 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0022650603 E b> 0.0016109848 E Data differs at [1054, 21]: E a> 0.0018474833 E b> 0.001314709 E Data differs at [1056, 21]: E a> 0.0024102582 E b> 0.001269524 E Data differs at [1055, 22]: E a> 0.0008159354 E b> 0.0006598695 E Data differs at [1481, 43]: E a> 0.002038141 E b> 0.0020902844 E Data differs at [1480, 44]: E a> 0.0020959883 E b> 0.0017572225 E Data differs at [1481, 44]: E a> 0.102758065 E b> 0.095894895 E Data differs at [1482, 44]: E a> 0.0025844118 E b> 0.0022998846 E Data differs at [1481, 45]: E a> 0.002059854 E b> 0.0018021322 E Data differs at [395, 52]: E a> 0.0017614666 E b> 0.0018853478 E ... E 630 different pixels found (0.02% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0026435363 E b> 0.0016522101 E Data differs at [1054, 21]: E a> 0.0025879343 E b> 0.0016174589 E Data differs at [1056, 21]: E a> 0.0026798856 E ? ^ ^ - E b> 0.0016749285 E ? ^ + ^ E Data differs at [1055, 22]: E a> 0.0027619752 E b> 0.0017262344 E Data differs at [1481, 43]: E a> 0.0028488045 E b> 0.0017805028 E Data differs at [1480, 44]: E a> 0.0027677694 E b> 0.0017298559 E Data differs at [1481, 44]: E a> 0.008595343 E b> 0.0053720893 E Data differs at [1482, 44]: E a> 0.0031485166 E b> 0.001967823 E Data differs at [1481, 45]: E a> 0.0028412694 E b> 0.0017757935 E Data differs at [395, 52]: E a> 0.0038568275 E b> 0.0024105173 E ... E 643 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a6c6c610>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 ____________________ test_nircam_image_stages12[flat_field] ____________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.09002619 E b> 0.32738262 E Data differs at [920, 16]: E a> 0.052945346 E b> 0.18061078 E Data differs at [1055, 20]: E a> 0.33696544 E b> 0.3419909 E Data differs at [1054, 21]: E a> 0.34418294 E b> 0.31142434 E Data differs at [1056, 21]: E a> 0.40694606 E b> 0.37811327 E Data differs at [1055, 22]: E a> 0.27549037 E b> 0.28508887 E Data differs at [2043, 22]: E a> 0.2827905 E b> 0.34500143 E Data differs at [1779, 36]: E a> 0.22842531 E b> 0.18010382 E Data differs at [1481, 43]: E a> 0.56260204 E b> 0.606131 E Data differs at [1480, 44]: E a> 0.39401183 E b> 0.46689737 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.064758725 E ? - - ^ E b> 0.06478241 E ? ^^ E Data differs at [920, 16]: E a> 0.077060364 E ? -- ^ E b> 0.0770661 E ? ^ E Data differs at [1055, 20]: E a> 0.062456973 E b> 0.05093568 E Data differs at [1054, 21]: E a> 0.060491886 E b> 0.049189527 E Data differs at [1056, 21]: E a> 0.069683485 E b> 0.053012744 E Data differs at [1055, 22]: E a> 0.053755384 E b> 0.043908693 E Data differs at [2043, 22]: E a> 0.088225916 E b> 0.088232905 E Data differs at [1779, 36]: E a> 0.07692341 E b> 0.07691945 E Data differs at [1481, 43]: E a> 0.0735143 E b> 0.065456174 E Data differs at [1480, 44]: E a> 0.06601398 E b> 0.05592473 E ... E 843 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0017985646 E b> 0.0012791977 E Data differs at [1054, 21]: E a> 0.0015227707 E b> 0.0010836365 E Data differs at [1056, 21]: E a> 0.0022968536 E b> 0.0012097919 E Data differs at [1055, 22]: E a> 0.000658483 E b> 0.00053253345 E Data differs at [1481, 43]: E a> 0.0022495145 E b> 0.0023070655 E Data differs at [1480, 44]: E a> 0.001875957 E b> 0.0015727539 E Data differs at [1481, 44]: E a> 0.102758065 E b> 0.095894895 E Data differs at [1482, 44]: E a> 0.0024145104 E b> 0.002148688 E Data differs at [1481, 45]: E a> 0.0023373393 E b> 0.0020448994 E Data differs at [395, 52]: E a> 0.0015284668 E b> 0.0016359615 E ... E 630 different pixels found (0.02% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0020990924 E b> 0.0013119327 E Data differs at [1054, 21]: E a> 0.0021330805 E b> 0.0013331752 E Data differs at [1056, 21]: E a> 0.0025537948 E b> 0.0015961218 E Data differs at [1055, 22]: E a> 0.0022289923 E b> 0.0013931202 E Data differs at [1481, 43]: E a> 0.0031442507 E b> 0.0019651568 E Data differs at [1480, 44]: E a> 0.0024772163 E b> 0.0015482602 E Data differs at [1481, 44]: E a> 0.008595343 E b> 0.0053720893 E Data differs at [1482, 44]: E a> 0.0029415304 E b> 0.0018384565 E Data differs at [1481, 45]: E a> 0.00322402 E b> 0.0020150125 E Data differs at [395, 52]: E a> 0.0033466618 E b> 0.0020916637 E ... E 643 different pixels found (0.02% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 2.5097626e-07 E b> 3.318991e-06 E Data differs at [920, 16]: E a> 8.3140705e-08 E b> 9.674876e-07 E Data differs at [1054, 21]: E a> 3.417118e-06 E b> 2.7976055e-06 E Data differs at [1056, 21]: E a> 5.139539e-06 E b> 4.43705e-06 E Data differs at [1055, 22]: E a> 2.1661124e-06 E b> 2.319683e-06 E Data differs at [2043, 22]: E a> 2.5267427e-06 E b> 3.7607388e-06 E Data differs at [1779, 36]: E a> 1.6112641e-06 E b> 1.0016688e-06 E Data differs at [1481, 43]: E a> 1.0586824e-05 E b> 1.2288422e-05 E Data differs at [1480, 44]: E a> 4.672562e-06 E b> 6.5611416e-06 E Data differs at [1481, 44]: E a> 0.020079335 E b> 0.030386627 E ... E 818 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65dca30>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 _______________________ test_nircam_image_stages12[cal] ________________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...al.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.039753504 E b> 0.14456466 E Data differs at [920, 16]: E a> 0.02337945 E b> 0.07975358 E Data differs at [1055, 20]: E a> 0.14879622 E b> 0.15101534 E Data differs at [1054, 21]: E a> 0.15198329 E b> 0.13751785 E Data differs at [1056, 21]: E a> 0.17969805 E b> 0.16696616 E Data differs at [1055, 22]: E a> 0.121650234 E b> 0.1258887 E Data differs at [2043, 22]: E a> 0.12487381 E b> 0.15234472 E Data differs at [1779, 36]: E a> 0.10086738 E b> 0.07952972 E Data differs at [1481, 43]: E a> 0.24843216 E b> 0.26765355 E Data differs at [1480, 44]: E a> 0.17398658 E b> 0.20617117 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.02859597 E b> 0.028606428 E Data differs at [920, 16]: E a> 0.03402809 E b> 0.034030624 E Data differs at [1055, 20]: E a> 0.027579568 E b> 0.022492029 E Data differs at [1054, 21]: E a> 0.02671183 E b> 0.021720968 E Data differs at [1056, 21]: E a> 0.03077063 E b> 0.023409212 E Data differs at [1055, 22]: E a> 0.023737146 E b> 0.019389072 E Data differs at [2043, 22]: E a> 0.038958542 E b> 0.038961627 E Data differs at [1779, 36]: E a> 0.033967614 E b> 0.033965867 E Data differs at [1481, 43]: E a> 0.032462228 E b> 0.028903946 E Data differs at [1480, 44]: E a> 0.029150259 E b> 0.024695078 E ... E 838 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.00035070267 E b> 0.00024943118 E Data differs at [1054, 21]: E a> 0.00029692554 E b> 0.00021129864 E Data differs at [1056, 21]: E a> 0.0004478642 E b> 0.0002358977 E Data differs at [1055, 22]: E a> 0.00012839782 E b> 0.000103838865 E Data differs at [1481, 43]: E a> 0.00043863355 E b> 0.00044985546 E Data differs at [1480, 44]: E a> 0.00036579347 E b> 0.00030667178 E Data differs at [1481, 44]: E a> 0.020036828 E b> 0.018698577 E Data differs at [1482, 44]: E a> 0.00047080615 E b> 0.0004189734 E Data differs at [1481, 45]: E a> 0.00045575856 E b> 0.0003987356 E Data differs at [395, 52]: E a> 0.00029803623 E b> 0.00031899667 E ... E 629 different pixels found (0.01% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.00040930268 E b> 0.00025581417 E Data differs at [1054, 21]: E a> 0.00041593006 E b> 0.00025995626 E Data differs at [1056, 21]: E a> 0.00049796526 E b> 0.0003112283 E Data differs at [1055, 22]: E a> 0.00043463192 E b> 0.00027164494 E Data differs at [1481, 43]: E a> 0.00061309844 E b> 0.00038318656 E Data differs at [1480, 44]: E a> 0.00048303322 E b> 0.00030189575 E Data differs at [1481, 44]: E a> 0.0016760087 E b> 0.0010475054 E Data differs at [1482, 44]: E a> 0.00057356997 E b> 0.00035848122 E Data differs at [1481, 45]: E a> 0.0006286527 E b> 0.00039290794 E Data differs at [395, 52]: E a> 0.00065256667 E b> 0.00040785418 E ... E 643 different pixels found (0.02% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 4.893794e-08 E b> 6.4717113e-07 E Data differs at [920, 16]: E a> 1.6211633e-08 E b> 1.8865072e-07 E Data differs at [1054, 21]: E a> 6.6630497e-07 E b> 5.45506e-07 E Data differs at [1056, 21]: E a> 1.0021604e-06 E b> 8.651818e-07 E Data differs at [2043, 22]: E a> 4.926904e-07 E b> 7.333077e-07 E Data differs at [1779, 36]: E a> 3.141809e-07 E b> 1.9531572e-07 E Data differs at [1481, 43]: E a> 2.064328e-06 E b> 2.3961234e-06 E Data differs at [1480, 44]: E a> 9.111044e-07 E b> 1.2793591e-06 E Data differs at [1481, 44]: E a> 0.003915276 E b> 0.005925098 E Data differs at [1482, 44]: E a> 2.1715964e-06 E b> 2.3583993e-06 E ... E 597 different pixels found (0.01% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b56d0880>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 _______________________ test_nircam_image_stages12[i2d] ________________________ run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits'} fitsdiff_default_kwargs = {'atol': 0.0001, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 5e-05, Absolute tolerance: 0.0001 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1969, 10]: E a> 0.15984109 E b> 0.16792287 E Data differs at [1970, 10]: E a> 0.0960092 E b> 0.16423722 E Data differs at [1969, 11]: E a> 0.20036528 E b> 0.20136714 E Data differs at [1970, 11]: E a> 0.16716906 E b> 0.17219812 E Data differs at [930, 17]: E a> 0.115546145 E b> 0.11749359 E Data differs at [931, 17]: E a> 0.13497004 E b> 0.13995413 E Data differs at [930, 18]: E a> 0.11211692 E b> 0.117040835 E Data differs at [931, 18]: E a> 0.11307905 E b> 0.12931742 E Data differs at [1067, 21]: E a> 0.15538444 E b> 0.15520869 E Data differs at [1068, 21]: E a> 0.15204114 E b> 0.15217957 E ... E 2410 different pixels found (0.06% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 0.02629995 E b> 0.022735761 E Data differs at [1068, 21]: E a> 0.023921274 E b> 0.023285905 E Data differs at [1066, 22]: E a> 0.025548926 E b> 0.022154603 E Data differs at [1067, 22]: E a> 0.015622238 E b> 0.012975088 E Data differs at [1068, 22]: E a> 0.027538575 E b> 0.022046449 E Data differs at [1069, 22]: E a> 0.024312938 E b> 0.023256807 E Data differs at [1066, 23]: E a> 0.024622891 E b> 0.023518944 E Data differs at [1067, 23]: E a> 0.021296604 E b> 0.017999826 E Data differs at [1068, 23]: E a> 0.026302129 E b> 0.02424953 E Data differs at [1069, 23]: E a> 0.015324785 E b> 0.0148078455 E ... E 1649 different pixels found (0.04% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 2742.6416 E b> 3716.786 E Data differs at [1068, 21]: E a> 3060.7256 E b> 3227.9043 E Data differs at [1066, 22]: E a> 2687.7239 E b> 3623.7373 E Data differs at [1067, 22]: E a> 826.6683 E b> 1253.9944 E Data differs at [1068, 22]: E a> 1953.3533 E b> 2772.7578 E Data differs at [1069, 22]: E a> 3241.673 E b> 3388.6853 E Data differs at [1066, 23]: E a> 2969.0122 E b> 3276.244 E Data differs at [1067, 23]: E a> 1859.6233 E b> 2772.005 E Data differs at [1068, 23]: E a> 2435.0532 E b> 2829.7239 E Data differs at [1069, 23]: E a> 1103.5242 E b> 1149.1068 E ... E 1732 different pixels found (0.04% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1068, 22]: E a> 0.00035593903 E b> 0.0002123474 E Data differs at [1498, 44]: E a> 0.012047942 E b> 0.011244834 E Data differs at [1499, 44]: E a> 0.004231013 E b> 0.0039408877 E Data differs at [1498, 45]: E a> 0.004089078 E b> 0.0038015156 E Data differs at [1499, 45]: E a> 0.0015877765 E b> 0.001486613 E Data differs at [197, 103]: E a> 0.00025734538 E b> 0.00013854748 E Data differs at [1856, 206]: E a> 0.00028086672 E b> 0.00017011206 E Data differs at [586, 223]: E a> 1.4786918 E b> 0.016489824 E Data differs at [587, 223]: E a> 0.07097444 E b> 0.0009425831 E Data differs at [586, 224]: E a> 5.1805506 E b> 0.05697716 E ... E 194 different pixels found (0.00% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 0.00036612444 E b> 0.00026081922 E Data differs at [1066, 22]: E a> 0.0003729281 E b> 0.00026844649 E Data differs at [1068, 22]: E a> 0.0004016168 E b> 0.0002729712 E Data differs at [1067, 23]: E a> 0.0003275944 E b> 0.00021689422 E Data differs at [1498, 43]: E a> 0.0004980092 E b> 0.00035829327 E Data differs at [1497, 44]: E a> 0.0004225794 E b> 0.00031350044 E Data differs at [1498, 44]: E a> 0.0012013637 E b> 0.0007561451 E Data differs at [1499, 44]: E a> 0.0007499872 E b> 0.00048909953 E Data differs at [1498, 45]: E a> 0.0007607483 E b> 0.0004958405 E Data differs at [1499, 45]: E a> 0.0005005839 E b> 0.00037930915 E ... E 756 different pixels found (0.02% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1498, 44]: E a> 0.002323961 E b> 0.0035167546 E Data differs at [1499, 44]: E a> 0.0007635071 E b> 0.0011547859 E Data differs at [1498, 45]: E a> 0.00073573296 E b> 0.0011129777 E Data differs at [1499, 45]: E a> 0.0002385609 E b> 0.00036037786 E Data differs at [586, 223]: E a> 3.579504 E b> 0.0004342406 E Data differs at [587, 223]: E a> 0.17142168 E b> 2.157141e-05 E Data differs at [586, 224]: E a> 12.542623 E b> 0.0015166934 E Data differs at [587, 224]: E a> 0.6482249 E b> 7.9360434e-05 E Data differs at [191, 252]: E a> 0.0155688925 E b> 0.018154027 E Data differs at [192, 252]: E a> 0.013071342 E b> 0.015241735 E ... E 196 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65f7400>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 ________________________ test_nircam_image_stage3[i2d] _________________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 0.0002, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["i2d"]) def test_nircam_image_stage3(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = f"jw42424-o002_t001_nircam_clear-f444w_{suffix}.fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code fitsdiff_default_kwargs["rtol"] = 1e-4 fitsdiff_default_kwargs["atol"] = 2e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 0.0001, Absolute tolerance: 0.0002 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> 0.1508750702820179 E b> 0.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [1565, 4]: E a> 0.005823679 E b> 0.15663332 E Data differs at [1566, 4]: E a> -0.028051918 E b> 0.12281047 E Data differs at [1567, 4]: E a> 0.010351804 E b> 0.16123411 E Data differs at [1568, 4]: E a> 0.027079035 E b> 0.17795493 E Data differs at [1569, 4]: E a> 0.0053295908 E b> 0.156203 E Data differs at [1570, 4]: E a> -0.002144072 E b> 0.14873089 E Data differs at [1571, 4]: E a> 0.025314786 E b> 0.17619129 E Data differs at [1572, 4]: E a> 0.05208291 E b> 0.20295873 E Data differs at [1573, 4]: E a> 0.032769606 E b> 0.18364361 E Data differs at [1574, 4]: E a> 0.005448792 E b> 0.15632308 E ... E 10277085 different pixels found (86.00% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1307, 21]: E a> 0.025256284 E b> 0.022760967 E Data differs at [1308, 21]: E a> 0.023561431 E b> 0.022918332 E Data differs at [1306, 22]: E a> 0.024967602 E b> 0.022665657 E Data differs at [1307, 22]: E a> 0.019955853 E b> 0.016779983 E Data differs at [1308, 22]: E a> 0.02625984 E b> 0.022084026 E Data differs at [1309, 22]: E a> 0.023759712 E b> 0.02271393 E Data differs at [1306, 23]: E a> 0.024734506 E b> 0.02279626 E Data differs at [1307, 23]: E a> 0.019289114 E b> 0.016402682 E Data differs at [1308, 23]: E a> 0.026396586 E b> 0.023045842 E Data differs at [1309, 23]: E a> 0.019380784 E b> 0.018343305 E ... E 1120 different pixels found (0.01% different). E E Extension HDU 3 (CON, 1): E E Data contains differences: E Data differs at [1885, 270]: E a> 21 E b> 20 E Data differs at [3914, 277]: E a> 42 E b> 10 E Data differs at [719, 279]: E a> 20 E b> 21 E Data differs at [431, 282]: E a> 21 E b> 17 E Data differs at [1877, 284]: E a> 21 E b> 17 E Data differs at [1878, 284]: E a> 21 E b> 17 E Data differs at [436, 287]: E a> 20 E b> 21 E Data differs at [433, 288]: E a> 20 E b> 21 E Data differs at [4740, 339]: E a> 42 E b> 34 E Data differs at [4330, 392]: E a> 42 E b> 40 E ... E 148 different pixels found (0.00% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1565, 4]: E a> 7.309319 E b> 7.171116 E Data differs at [1566, 4]: E a> 22.518631 E b> 22.377031 E Data differs at [1567, 4]: E a> 37.01157 E b> 36.872105 E Data differs at [1568, 4]: E a> 49.936935 E b> 49.80254 E Data differs at [1569, 4]: E a> 65.601326 E b> 65.46431 E Data differs at [1570, 4]: E a> 76.80186 E b> 76.6702 E Data differs at [1571, 4]: E a> 88.43906 E b> 88.31088 E Data differs at [1572, 4]: E a> 114.759995 E b> 114.616394 E Data differs at [1573, 4]: E a> 131.87848 E b> 131.73204 E Data differs at [1574, 4]: E a> 138.65915 E b> 138.5211 E ... E 27991 different pixels found (0.23% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.008715443 E b> 0.008140911 E Data differs at [1739, 44]: E a> 0.003984044 E b> 0.0037175817 E Data differs at [1738, 45]: E a> 0.0062911706 E b> 0.0058591613 E 3 different pixels found (0.00% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.0009995435 E b> 0.00063645333 E Data differs at [1739, 44]: E a> 0.00071345706 E b> 0.00047994524 E Data differs at [1738, 45]: E a> 0.00087213825 E b> 0.0005644086 E Data differs at [1796, 101]: E a> 0.00050021254 E b> 0.0002617663 E Data differs at [1797, 101]: E a> 0.00067892275 E b> 0.00026894035 E Data differs at [1798, 101]: E a> 0.00049419183 E b> 0.00028671123 E Data differs at [1796, 102]: E a> 0.00057534705 E b> 0.00027770537 E Data differs at [1797, 102]: E a> 0.0008656035 E b> 0.00033669715 E Data differs at [1798, 102]: E a> 0.0005335814 E b> 0.00028685402 E Data differs at [1797, 103]: E a> 0.0007247192 E ? ^^^ E b> 0.00037192 E ? ^ E ... E 15 different pixels found (0.00% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.0016601224 E b> 0.0025119758 E Data differs at [1739, 44]: E a> 0.00072056684 E b> 0.0010897379 E Data differs at [1738, 45]: E a> 0.0011766601 E b> 0.0017805282 E Data differs at [1739, 45]: E a> 0.0005043818 E b> 0.0007626725 E Data differs at [4399, 2232]: E a> 4.9913373 E b> 4.990525 E Data differs at [4398, 2233]: E a> 1.5806459 E b> 1.5812168 E Data differs at [4399, 2233]: E a> 1.8931155 E b> 1.8935876 E 7 different pixels found (0.00% different). E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Column BKGLEVEL data differs in row 0: E a> 0.15087507028201788 E b> 0.0 E Column BKGLEVEL data differs in row 1: E a> 0.15087507028201788 E b> 0.0 E Column BKGLEVEL data differs in row 2: E a> 0.1518323275845312 E b> 0.0009531162879104502 E Column BKGLEVEL data differs in row 3: E a> 0.1518323275845312 E b> 0.0009531162879104502 E Column BKGLEVEL data differs in row 4: E a> 0.1520789019602153 E b> 0.0012056025542624728 E Column BKGLEVEL data differs in row 5: E a> 0.1520789019602153 E b> 0.0012056025542624728 E 6 different table data element(s) found (0.25% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aacf8760>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:149: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 _______________________ test_nircam_image_stage3_catalog _______________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...sv', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv'} diff_astropy_tables = <function diff_astropy_tables.<locals>._diff_astropy_tables at 0x7f71a72f3940> @pytest.mark.bigdata def test_nircam_image_stage3_catalog(run_image3pipeline, rtdata_module, diff_astropy_tables): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = "jw42424-o002_t001_nircam_clear-f444w_cat.ecsv" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") > assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-4, atol=1e-5) E AssertionError: Row count does not match E assert 124 == 123 E +124 E -123 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:160: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 ________________________ test_nircam_image_stage3_segm _________________________ run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_segm(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that segmentation map looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = "jw42424-o002_t001_nircam_clear-f444w_segm.fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_segm.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_segm.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> 0.1508750702820179 E b> 0.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [3788, 137]: E a> 1 E b> 0 E Data differs at [136, 276]: E a> 5 E b> 0 E Data differs at [137, 276]: E a> 5 E b> 0 E Data differs at [714, 276]: E a> 4 E b> 0 E Data differs at [717, 276]: E a> 4 E b> 0 E Data differs at [1004, 276]: E a> 6 E b> 0 E Data differs at [1005, 276]: E a> 6 E b> 5 E Data differs at [1006, 276]: E a> 6 E b> 5 E Data differs at [1013, 276]: E a> 6 E b> 5 E Data differs at [1014, 276]: E a> 6 E b> 0 E ... E 13993 different pixels found (0.12% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65dfd00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:173: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 ____________________________ test_image3_closedfile ____________________________ run_image3_closedfile = None rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_image3_closedfile(run_image3_closedfile, rtdata, fitsdiff_default_kwargs): """Ensure production of Image3Pipeline output with data having closed file issues""" rtdata.output = 'jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits' rtdata.get_truth('truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits') diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/truth/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 238 E b: 237 E Extra keyword 'S_SKYMAT' in a: 'SKIPPED' E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column S_SKYMAT of format 7A in a E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Extra column S_SKYMAT of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a5f6cac0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:194: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2022-01-29 14:02:05,517 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2022-01-29 14:02:05,525 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 14:02:06,162 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 14:02:06,249 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 14:02:06,250 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 14:02:06,251 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 14:02:06,253 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 14:02:06,254 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:02:06,254 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:02:06,255 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 14:02:06,255 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:02:06,255 - stpipe - INFO - OS: Linux 2022-01-29 14:02:06,389 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2022-01-29 14:02:06,395 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 14:02:06,492 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 14:02:06,496 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 14:02:06,497 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 14:02:06,497 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 14:02:06,499 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 14:02:06,803 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 14:02:06,804 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 14:02:06,823 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,829 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 14:02:06,953 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 14:02:06,954 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:02:06,969 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 14:02:07,089 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2022-01-29 14:02:07,806 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 14:02:07,865 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:07,972 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,018 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 14:02:08,080 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,190 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,239 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 14:02:08,298 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,406 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,453 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 14:02:08,512 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,622 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,688 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2022-01-29 14:02:09,082 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2022-01-29 14:02:09,083 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 14:02:09,222 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2022-01-29 14:02:09,223 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 14:02:09,239 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2022-01-29 14:02:09,297 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2022-01-29 14:02:09,403 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources 2022-01-29 14:02:09,492 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv 2022-01-29 14:02:09,595 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits 2022-01-29 14:02:09,596 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits 2022-01-29 14:02:09,597 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 14:02:09,597 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 120.5G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 120.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 _______________________ test_nircam_image_moving_target ________________________ rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["calwebb_image3", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> -0.0042070511494792 E b> 0.01066505672404274 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [6, 1]: E a> -0.17641975 E b> -0.19129185 E Data differs at [7, 1]: E a> -0.15290987 E b> -0.167782 E Data differs at [8, 1]: E a> -0.17446767 E b> -0.18933977 E Data differs at [9, 1]: E a> -0.34557453 E b> -0.36044663 E Data differs at [10, 1]: E a> -0.26017228 E b> -0.27504438 E Data differs at [11, 1]: E a> -0.17641784 E b> -0.19128995 E Data differs at [12, 1]: E a> -0.027480701 E b> -0.04235281 E Data differs at [13, 1]: E a> -0.22043116 E b> -0.23530328 E Data differs at [14, 1]: E a> -0.22509731 E b> -0.23996942 E Data differs at [15, 1]: E a> -0.317307 E b> -0.3321791 E ... E 6086893 different pixels found (90.77% different). E E Extension HDU 3 (CON, 1): E E Data contains differences: E Data differs at [2034, 226]: E a> 5 E b> 4 E Data differs at [2035, 226]: E a> 5 E b> 4 E Data differs at [2045, 226]: E a> 5 E b> 4 E Data differs at [2046, 226]: E a> 5 E b> 4 E Data differs at [2047, 226]: E a> 5 E b> 4 E Data differs at [2048, 226]: E a> 5 E b> 4 E Data differs at [2035, 227]: E a> 5 E b> 4 E Data differs at [2044, 227]: E a> 5 E b> 4 E Data differs at [2045, 227]: E a> 5 E b> 4 E Data differs at [2046, 227]: E a> 5 E b> 4 E ... E 1341 different pixels found (0.02% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1237, 1]: E a> 27.603218 E b> 26.987366 E Data differs at [1238, 1]: E a> 25.48684 E b> 24.458193 E Data differs at [806, 12]: E a> 20.45811 E b> 15.095991 E Data differs at [807, 12]: E a> 24.603935 E b> 22.769478 E Data differs at [806, 13]: E a> 21.618063 E b> 17.902166 E Data differs at [807, 13]: E a> 27.379896 E b> 26.098883 E Data differs at [1032, 13]: E a> 23.19034 E b> 19.716366 E Data differs at [1033, 13]: E a> 20.986961 E b> 15.961964 E Data differs at [1032, 14]: E a> 28.742466 E b> 27.199854 E Data differs at [1033, 14]: E a> 26.331074 E b> 24.088245 E ... E 17707 different pixels found (0.26% different). E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Column BKGLEVEL data differs in row 0: E a> -0.0042070511494792 E b> 0.010665056724042742 E Column BKGLEVEL data differs in row 1: E a> 0.00713744052901899 E b> 0.02200954840254093 E Column BKGLEVEL data differs in row 2: E a> -0.014872107873521941 E b> 0.0 E Column BKGLEVEL data differs in row 3: E a> -0.0057721785810010175 E b> 0.009099929292520924 E 4 different table data element(s) found (0.25% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b5b01520>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:20: AssertionError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ----------------------------- Captured stderr call ----------------------------- 2022-01-29 14:02:15,788 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2022-01-29 14:02:15,818 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 14:02:17,104 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 14:02:17,362 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 14:02:17,363 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 14:02:17,364 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 14:02:17,365 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 14:02:17,366 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:02:17,367 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:02:17,368 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 14:02:17,368 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:02:17,368 - stpipe - INFO - OS: Linux 2022-01-29 14:02:17,577 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2022-01-29 14:02:17,582 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 14:02:17,842 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 14:02:17,845 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 14:02:17,846 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 14:02:17,847 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 14:02:17,848 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 14:02:19,064 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2022-01-29 14:02:19,065 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2022-01-29 14:02:19,181 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2022-01-29 14:02:19,375 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 14:02:19,376 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 14:02:19,446 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,446 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 2022-01-29 14:02:23,149 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 2022-01-29 14:02:23,149 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,161 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 14:02:23,303 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 14:02:23,304 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 14:02:23,310 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2022-01-29 14:02:26,225 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:30,960 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:35,681 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:40,530 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:44,826 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2022-01-29 14:02:47,196 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2022-01-29 14:02:50,889 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:02:55,930 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:01,940 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:08,165 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:12,832 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,178 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,386 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,593 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,593 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 14:03:13,796 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 14:03:13,797 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:03:13,820 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 14:03:13,971 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2022-01-29 14:03:14,653 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 14:03:17,978 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:23,078 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:28,232 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:33,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:35,207 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 14:03:38,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:43,323 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:48,344 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:53,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:55,242 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 14:03:58,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:03,351 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:08,265 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:13,131 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:15,062 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 14:04:17,970 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:22,800 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:27,687 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:32,447 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:34,415 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2022-01-29 14:04:35,034 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2022-01-29 14:04:35,034 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 14:04:35,212 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2022-01-29 14:04:35,213 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 14:04:35,235 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 14:04:35,245 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2022-01-29 14:04:35,295 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2022-01-29 14:04:37,866 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 612 sources 2022-01-29 14:04:38,879 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2022-01-29 14:04:39,023 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in mt_assoc_segm.fits 2022-01-29 14:04:39,024 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: mt_assoc_segm.fits 2022-01-29 14:04:39,024 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 14:04:39,025 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:390 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:394 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:493 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 120.5G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 120.5G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 119.8G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 119.8G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 612 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: mt_assoc_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 ______ test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] _______ input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T14:52:00.650', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". _____________ test_nircam_image_moving_target_kwds[with_mt_table] ______________ input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T19:49:25.405', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueError ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". _____________________ test_nircam_detector1_subarray[rate] _____________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rate.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Data contains differences: E Data differs at [60, 1]: E a> -3.6529362 E b> 0.9126485 E Data differs at [74, 1]: E a> -2.5214245 E b> -1.0083796 E Data differs at [81, 1]: E a> 1.7130512 E b> 5.626507 E Data differs at [92, 1]: E a> -1.8041989 E b> 2.300333 E Data differs at [93, 1]: E a> -1.4376131 E b> 2.812548 E Data differs at [107, 1]: E a> -1.0728153 E b> 2.3759737 E Data differs at [110, 1]: E a> -1.0782975 E b> 2.4619865 E Data differs at [113, 1]: E a> -3.6437645 E b> -1.4573903 E Data differs at [115, 1]: E a> 0.15931411 E b> 2.3071055 E Data differs at [120, 1]: E a> -9.490348 E b> -1.3068773 E ... E 4096 different pixels found (3.12% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 2.0452366 E b> 1.0857972 E Data differs at [81, 1]: E a> 1.1517268 E b> 2.2423935 E Data differs at [92, 1]: E a> 1.9480665 E b> 1.0646985 E Data differs at [93, 1]: E a> 2.1131043 E b> 1.1633353 E Data differs at [107, 1]: E a> 1.9880683 E b> 1.1069924 E Data differs at [110, 1]: E a> 1.978944 E b> 1.0914752 E Data differs at [115, 1]: E a> 1.9433244 E b> 1.1260422 E Data differs at [120, 1]: E a> 3.040765 E b> 1.9231486 E Data differs at [126, 1]: E a> 2.007433 E b> 1.1497276 E Data differs at [130, 1]: E a> 2.0925982 E b> 1.1971588 E ... E 3783 different pixels found (2.89% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [60, 1]: E a> 4 E b> 0 E Data differs at [81, 1]: E a> 0 E b> 4 E Data differs at [92, 1]: E a> 4 E b> 0 E Data differs at [93, 1]: E a> 4 E b> 0 E Data differs at [107, 1]: E a> 4 E b> 0 E Data differs at [110, 1]: E a> 4 E b> 0 E ... E 4195 different pixels found (3.20% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 0.0 E b> 0.1332073 E Data differs at [81, 1]: E a> 0.3087059 E b> 0.95725334 E Data differs at [92, 1]: E a> 0.0 E b> 0.18484186 E Data differs at [93, 1]: E a> 0.0 E b> 0.23704636 E Data differs at [107, 1]: E a> 0.0 E b> 0.23732814 E Data differs at [110, 1]: E a> 0.0 E b> 0.21226332 E Data differs at [115, 1]: E a> 0.07509628 E b> 0.3426177 E Data differs at [126, 1]: E a> 0.0051914197 E b> 0.31572455 E Data differs at [130, 1]: E a> 0.14754042 E b> 0.37533247 E Data differs at [147, 1]: E a> 0.0 E b> 0.2419803 E ... E 3110 different pixels found (2.37% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 4.1829925 E b> 1.0457482 E Data differs at [81, 1]: E a> 1.0177689 E b> 4.0710754 E Data differs at [92, 1]: E a> 3.794963 E b> 0.94874084 E Data differs at [93, 1]: E a> 4.4652104 E b> 1.1163026 E Data differs at [107, 1]: E a> 3.9524157 E b> 0.98810405 E Data differs at [110, 1]: E a> 3.9162192 E b> 0.9790549 E Data differs at [115, 1]: E a> 3.7014136 E b> 0.9253534 E Data differs at [120, 1]: E a> 9.246252 E b> 3.6985009 E Data differs at [126, 1]: E a> 4.0245953 E b> 1.0061489 E Data differs at [130, 1]: E a> 4.2314262 E b> 1.0578567 E ... E 3778 different pixels found (2.88% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b5ae9280>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError ---------------------------- Captured stderr setup ----------------------------- 2022-01-29 14:04:51,324 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2022-01-29 14:04:51,339 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2022-01-29 14:04:51,340 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2022-01-29 14:04:51,340 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2022-01-29 14:04:51,341 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2022-01-29 14:04:51,342 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2022-01-29 14:04:51,342 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2022-01-29 14:04:51,343 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2022-01-29 14:04:51,344 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2022-01-29 14:04:51,344 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2022-01-29 14:04:51,345 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2022-01-29 14:04:51,346 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2022-01-29 14:04:51,346 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2022-01-29 14:04:51,347 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2022-01-29 14:04:51,348 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2022-01-29 14:04:51,349 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2022-01-29 14:04:51,350 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2022-01-29 14:04:51,350 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2022-01-29 14:04:51,350 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:04:51,350 - stpipe - INFO - OS: Linux 2022-01-29 14:04:51,491 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). 2022-01-29 14:04:51,499 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} 2022-01-29 14:04:51,551 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2022-01-29 14:04:51,569 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits'. 2022-01-29 14:04:51,571 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits'. 2022-01-29 14:04:51,572 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits'. 2022-01-29 14:04:51,574 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits'. 2022-01-29 14:04:51,575 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0026.fits'. 2022-01-29 14:04:51,577 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits'. 2022-01-29 14:04:51,580 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits'. 2022-01-29 14:04:51,582 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0008.fits'. 2022-01-29 14:04:51,583 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0008.fits'. 2022-01-29 14:04:51,585 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2022-01-29 14:04:51,900 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:51,900 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:51,938 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed 2022-01-29 14:04:51,939 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2022-01-29 14:04:51,940 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2022-01-29 14:04:52,070 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:52,071 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:52,092 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits 2022-01-29 14:04:53,333 - stpipe.Detector1Pipeline.dq_init - INFO - Extracting mask subarray to match science data 2022-01-29 14:04:53,346 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2022-01-29 14:04:53,467 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:53,468 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:53,490 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits 2022-01-29 14:04:55,048 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,048 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,082 - stpipe.Detector1Pipeline.saturation - INFO - Extracting reference file subarray to match science data 2022-01-29 14:04:55,097 - stpipe.Detector1Pipeline.saturation - INFO - Detected 513 saturated pixels 2022-01-29 14:04:55,097 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2022-01-29 14:04:55,103 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2022-01-29 14:04:55,228 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:55,229 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:55,229 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2022-01-29 14:04:55,231 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2022-01-29 14:04:55,356 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:55,357 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:55,379 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits 2022-01-29 14:04:57,440 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:57,490 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2022-01-29 14:04:57,607 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:57,608 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2022-01-29 14:04:58,620 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2022-01-29 14:04:58,742 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:58,743 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:58,763 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,421 - stpipe.Detector1Pipeline.linearity - INFO - Extracting linearity subarray to match science data 2022-01-29 14:05:01,460 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2022-01-29 14:05:01,583 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:01,584 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2022-01-29 14:05:03,154 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:03,694 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits 2022-01-29 14:05:03,698 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2022-01-29 14:05:03,823 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:03,823 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} 2022-01-29 14:05:03,846 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits 2022-01-29 14:05:10,013 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=5, nframes=1, groupgap=0 2022-01-29 14:05:10,013 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=600, nframes=1, groupgap=0 2022-01-29 14:05:10,142 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2022-01-29 14:05:10,274 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:10,275 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2022-01-29 14:05:10,284 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma 2022-01-29 14:05:10,298 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits 2022-01-29 14:05:10,884 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits 2022-01-29 14:05:11,335 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2022-01-29 14:05:11,368 - stpipe.Detector1Pipeline.jump - INFO - Extracting gain subarray to match science data 2022-01-29 14:05:11,368 - stpipe.Detector1Pipeline.jump - INFO - Extracting readnoise subarray to match science data 2022-01-29 14:05:11,372 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2022-01-29 14:05:11,377 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and three groups 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 1 pixels with at least one CR and two groups 2022-01-29 14:05:11,471 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 0.0986362 sec 2022-01-29 14:05:11,473 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 1.188454 2022-01-29 14:05:11,478 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2022-01-29 14:05:11,608 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:11,609 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2022-01-29 14:05:11,647 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits 2022-01-29 14:05:11,675 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting gain subarray to match science data 2022-01-29 14:05:11,716 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting readnoise subarray to match science data 2022-01-29 14:05:12,113 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 5 2022-01-29 14:05:12,113 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2022-01-29 14:05:12,193 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2022-01-29 14:05:12,328 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:12,329 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:05:12,391 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 14:05:12,391 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 14:05:12,395 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 14:05:12,514 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:12,515 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:05:12,572 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 14:05:12,572 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 14:05:12,576 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 14:05:12,643 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rateints.fits 2022-01-29 14:05:12,644 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2022-01-29 14:05:12,705 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rate.fits 2022-01-29 14:05:12,705 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done ------------------------------ Captured log setup ------------------------------ DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:330 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:330 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:330 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:330 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:330 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:330 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:330 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:330 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:330 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:330 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:330 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:330 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:330 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:330 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:330 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:330 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:330 GainScaleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Detector1Pipeline:step.py:390 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:394 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Detector1Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Detector1Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Detector1Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0026.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0008.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0008.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:390 Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:394 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:49 NFRAMES and FRMDIVSR are equal; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:50 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:493 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:390 Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:394 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:step.py:493 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:390 Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:394 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 513 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 513 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:493 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:390 Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:394 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:424 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:493 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:390 Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:394 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:493 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:390 Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:394 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout INFO stpipe.Detector1Pipeline.refpix:step.py:493 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:390 Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:394 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:493 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:390 Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:394 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:493 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:390 Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:394 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=600, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=600, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:493 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:390 Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:394 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 4 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 1 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 1 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0986362 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0986362 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 1.188454 INFO stpipe.Detector1Pipeline.jump:step.py:493 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:390 Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:394 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 513: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 513: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -36.894756, 0.110178, 659.529541, 3.264899 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -36.894756, 0.110178, 659.529541, 3.264899 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.393971 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.393971 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:493 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_rate.fits INFO stpipe.Detector1Pipeline:step.py:493 Step Detector1Pipeline done ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 ___________________ test_nircam_detector1_subarray[rateints] ___________________ run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rateints.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rateints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rateints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Data contains differences: E Data differs at [60, 1, 1]: E a> -3.6529362 E b> 0.9126485 E Data differs at [74, 1, 1]: E a> -2.5214245 E b> -1.0083796 E Data differs at [81, 1, 1]: E a> 1.7130512 E b> 5.626507 E Data differs at [92, 1, 1]: E a> -1.8041986 E b> 2.300333 E Data differs at [93, 1, 1]: E a> -1.4376131 E b> 2.812548 E Data differs at [107, 1, 1]: E a> -1.0728153 E b> 2.3759737 E Data differs at [110, 1, 1]: E a> -1.0782975 E b> 2.4619865 E Data differs at [113, 1, 1]: E a> -3.6437645 E b> -1.4573903 E Data differs at [115, 1, 1]: E a> 0.15931411 E b> 2.3071055 E Data differs at [120, 1, 1]: E a> -9.490348 E b> -1.3068774 E ... E 4096 different pixels found (3.12% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [5, 1, 1]: E a> 0.0 E b> 0.94841516 E Data differs at [17, 1, 1]: E a> 0.0 E b> 1.0411029 E Data differs at [18, 1, 1]: E a> 0.0 E b> 0.95915216 E Data differs at [19, 1, 1]: E a> 0.0 E b> 0.98480403 E Data differs at [21, 1, 1]: E a> 0.0 E b> 0.9898501 E Data differs at [24, 1, 1]: E a> 0.0 E b> 1.0147899 E Data differs at [25, 1, 1]: E a> 0.0 E b> 0.9974037 E Data differs at [26, 1, 1]: E a> 0.0 E b> 0.9821483 E Data differs at [27, 1, 1]: E a> 0.0 E b> 0.9983641 E Data differs at [29, 1, 1]: E a> 0.0 E b> 1.0051337 E ... E 73841 different pixels found (56.34% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [60, 1, 1]: E a> 4 E b> 0 E Data differs at [81, 1, 1]: E a> 0 E b> 4 E Data differs at [92, 1, 1]: E a> 4 E b> 0 E Data differs at [93, 1, 1]: E a> 4 E b> 0 E Data differs at [107, 1, 1]: E a> 4 E b> 0 E Data differs at [110, 1, 1]: E a> 4 E b> 0 E ... E 4195 different pixels found (3.20% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [60, 1, 1]: E a> 0.0 E b> 0.1332073 E Data differs at [81, 1, 1]: E a> 0.3087059 E b> 0.95725334 E Data differs at [92, 1, 1]: E a> 0.0 E b> 0.18484186 E Data differs at [93, 1, 1]: E a> 0.0 E b> 0.23704636 E Data differs at [107, 1, 1]: E a> 0.0 E b> 0.23732814 E Data differs at [110, 1, 1]: E a> 0.0 E b> 0.21226332 E Data differs at [115, 1, 1]: E a> 0.07509628 E b> 0.3426177 E Data differs at [126, 1, 1]: E a> 0.0051914197 E b> 0.31572455 E Data differs at [130, 1, 1]: E a> 0.14754042 E b> 0.37533247 E Data differs at [147, 1, 1]: E a> 0.0 E b> 0.2419803 E ... E 3110 different pixels found (2.37% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [60, 1, 1]: E a> 4.1829925 E b> 1.0457482 E Data differs at [81, 1, 1]: E a> 1.0177689 E b> 4.0710754 E Data differs at [92, 1, 1]: E a> 3.794963 E b> 0.94874084 E Data differs at [93, 1, 1]: E a> 4.4652104 E b> 1.1163026 E Data differs at [107, 1, 1]: E a> 3.9524157 E b> 0.98810405 E Data differs at [110, 1, 1]: E a> 3.9162192 E b> 0.9790549 E Data differs at [115, 1, 1]: E a> 3.7014136 E b> 0.9253534 E Data differs at [120, 1, 1]: E a> 9.246252 E b> 3.6985009 E Data differs at [126, 1, 1]: E a> 4.0245953 E b> 1.0061489 E Data differs at [130, 1, 1]: E a> 4.2314262 E b> 1.0578567 E ... E 3778 different pixels found (2.88% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aae28790>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError ------------------------------ Captured log call ------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 =============================== warnings summary =============================== ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/version.py:26 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/version.py:26: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. for j, piece in enumerate(LooseVersion(version).version[:3]): ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160 miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/utils/introspection.py:160: DeprecationWarning: distutils Version classes are deprecated. Use packaging.version instead. return LooseVersion(have_version) >= LooseVersion(version) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py: 9 warnings miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py: 1 warning /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/gwcs/wcs.py:2952: DeprecationWarning: Indexing a WCS.pipeline step is deprecated. Use the `frame` and `transform` attributes instead. warnings.warn("Indexing a WCS.pipeline step is deprecated. " miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/resample/resample_utils.py:156: RuntimeWarning: var_rnoise array not available. Setting drizzle weight map to 1 warnings.warn("var_rnoise array not available. Setting drizzle weight map to 1", miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/fromnumeric.py:3474: RuntimeWarning: Mean of empty slice. return _methods._mean(a, axis=axis, dtype=dtype, miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/numpy/core/_methods.py:189: RuntimeWarning: invalid value encountered in true_divide ret = ret.dtype.type(ret / rcount) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/config_parser.py:118: ResourceWarning: unclosed file <_io.BufferedReader name='config/calwebb_image2.cfg'> return ConfigObj(config_file, raise_errors=True) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/step.py:379: ResourceWarning: unclosed file <_io.FileIO name='/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits' mode='rb' closefd=True> gc.collect() miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stpipe/config_parser.py:118: ResourceWarning: unclosed file <_io.BufferedReader name='config/calwebb_image3.cfg'> return ConfigObj(config_file, raise_errors=True) miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/astropy/table/table.py:3409: FutureWarning: elementwise == comparison failed and returning scalar instead; this will raise an error or perform elementwise comparison in the future. result = self.as_array() == other -- Docs: https://docs.pytest.org/en/stable/warnings.html - generated html file: file:///data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/tmp_o7k4os1/regtest_report.html - =========================== short test summary info ============================ FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] FAILED ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] = 17 failed, 38 passed, 2 skipped, 413 deselected, 42 warnings, 2 errors in 1173.39s (0:19:33) =
HTML(html_report)
Report generated on 29-Jan-2022 at 14:06:25 by pytest-html v3.1.1
| BUILD_ID | 100 |
| BUILD_NUMBER | 100 |
| BUILD_TAG | jenkins-Notebooks-jwst_validation_notebooks_spacetelescope-100 |
| BUILD_URL | https://plwishmaster.stsci.edu:8081/job/Notebooks/job/jwst_validation_notebooks_spacetelescope/100/ |
| EXECUTOR_NUMBER | 18 |
| GIT_BRANCH | origin/master |
| GIT_COMMIT | 904bd04dc6d740ccb300e309d1247490b5a321f5 |
| GIT_URL | https://github.com/spacetelescope/jwst_validation_notebooks |
| JENKINS_URL | https://plwishmaster.stsci.edu:8081/ |
| JOB_NAME | Notebooks/jwst_validation_notebooks_spacetelescope |
| NODE_NAME | jwcalibdev.stsci.edu |
| Packages | {"pluggy": "1.0.0", "py": "1.11.0", "pytest": "6.2.5"} |
| Platform | Linux-3.10.0-1160.49.1.el7.x86_64-x86_64-with-glibc2.17 |
| Plugins | {"asdf": "2.8.3", "ci-watson": "0.5", "html": "3.1.1", "jwst": "1.3.2", "metadata": "1.11.0"} |
| Python | 3.9.9 |
| WORKSPACE | /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope |
55 tests ran in 1172.98 seconds.
(Un)check the boxes to filter the results.
38 passed, 2 skipped, 17 failed, 0 errors, 0 expected failures, 0 unexpected passes| Result | Test | Duration | Links |
|---|---|---|---|
| No results found. Try to check the filters | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[i2d] | 0.58 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits'} suffix = 'i2d' fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["psfstack", "i2d"]) def test_nircam_coron3_product(run_pipeline, suffix, fitsdiff_default_kwargs): """Check final products of calwebb_coron3""" rtdata = run_pipeline output = "jw99999-a3001_t1_nircam_f140m-maskbar_" + suffix + ".fits" rtdata.output = output rtdata.get_truth("truth/test_nircam_coron3/" + output) fitsdiff_default_kwargs['atol'] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/truth/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aac29ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py:70: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits HTTP/1.1" 200 866880 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[linearity] | 5.84 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'linearity' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_linearity.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_linearity.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [2, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [3, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [4, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [5, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [6, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [7, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [8, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [9, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [10, 1]: E a> 2147483648 E b> 2148532224 E ... E 32704 different pixels found (0.78% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f7196224ca0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_linearity.fits HTTP/1.1" 200 297852480 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dark_current] | 5.34 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes... 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'dark_current' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_dark_current.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_dark_current.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [2, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [3, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [4, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [5, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [6, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [7, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [8, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [9, 1]: E a> 2147483648 E b> 2148532224 E Data differs at [10, 1]: E a> 2147483648 E b> 2148532224 E ... E 32704 different pixels found (0.78% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aa8f4ee0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dark_current.fits HTTP/1.1" 200 297855360 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[jump] | 6.55 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...p.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'jump' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_jump.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_jump.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 2 (PIXELDQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [2, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [3, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [4, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [5, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [6, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [7, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [8, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [9, 1]: E a> 2148007937 E b> 2149056513 E Data differs at [10, 1]: E a> 2148007937 E b> 2149056513 E ... E 32704 different pixels found (0.78% different). E E Extension HDU 3 (GROUPDQ, 1): E E Data contains differences: E Data differs at [1481, 43, 2, 1]: E a> 4 E b> 0 E Data differs at [1480, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1481, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1482, 44, 2, 1]: E a> 4 E b> 0 E Data differs at [1481, 45, 2, 1]: E a> 4 E b> 0 E Data differs at [1102, 84, 2, 1]: E a> 4 E b> 0 E Data differs at [577, 215, 2, 1]: E a> 4 E b> 0 E Data differs at [576, 216, 2, 1]: E a> 4 E b> 0 E Data differs at [577, 216, 2, 1]: E a> 4 E b> 0 E Data differs at [578, 216, 2, 1]: E a> 4 E b> 0 E ... E 3107 different pixels found (0.01% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aa81b1f0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_jump.fits HTTP/1.1" 200 297855360 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[rate] | 1.87 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...e.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'rate' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.09238005 E b> 0.33594248 E Data differs at [920, 16]: E a> 0.056724414 E b> 0.1935022 E Data differs at [1055, 20]: E a> 0.37814838 E b> 0.38378802 E Data differs at [1054, 21]: E a> 0.37910748 E b> 0.34302482 E Data differs at [1056, 21]: E a> 0.41687128 E b> 0.38733527 E Data differs at [1055, 22]: E a> 0.30666345 E b> 0.31734806 E Data differs at [2043, 22]: E a> 0.28503218 E b> 0.34773624 E Data differs at [1779, 36]: E a> 0.23533231 E b> 0.1855497 E Data differs at [1481, 43]: E a> 0.53551793 E b> 0.5769514 E Data differs at [1480, 44]: E a> 0.41647816 E b> 0.4935196 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.07006138 E b> 0.057124384 E Data differs at [1054, 21]: E a> 0.06659893 E b> 0.054149494 E Data differs at [1056, 21]: E a> 0.07134524 E b> 0.05426281 E Data differs at [1055, 22]: E a> 0.059815638 E b> 0.04884776 E Data differs at [1481, 43]: E a> 0.06990669 E b> 0.06221565 E Data differs at [1480, 44]: E a> 0.069740646 E b> 0.05905149 E Data differs at [1481, 44]: E a> 0.33369657 E b> 0.31822476 E Data differs at [1482, 44]: E a> 0.0757161 E b> 0.0653277 E Data differs at [1481, 45]: E a> 0.070008025 E b> 0.059815764 E Data differs at [395, 52]: E a> 0.074955285 E ? ^^^ E b> 0.06554285 E ? ^ + E ... E 653 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0022650603 E b> 0.0016109848 E Data differs at [1054, 21]: E a> 0.0018474833 E b> 0.001314709 E Data differs at [1056, 21]: E a> 0.0024102582 E b> 0.001269524 E Data differs at [1055, 22]: E a> 0.0008159354 E b> 0.0006598695 E Data differs at [1481, 43]: E a> 0.002038141 E b> 0.0020902844 E Data differs at [1480, 44]: E a> 0.0020959883 E b> 0.0017572225 E Data differs at [1481, 44]: E a> 0.102758065 E b> 0.095894895 E Data differs at [1482, 44]: E a> 0.0025844118 E b> 0.0022998846 E Data differs at [1481, 45]: E a> 0.002059854 E b> 0.0018021322 E Data differs at [395, 52]: E a> 0.0017614666 E b> 0.0018853478 E ... E 630 different pixels found (0.02% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0026435363 E b> 0.0016522101 E Data differs at [1054, 21]: E a> 0.0025879343 E b> 0.0016174589 E Data differs at [1056, 21]: E a> 0.0026798856 E ? ^ ^ - E b> 0.0016749285 E ? ^ + ^ E Data differs at [1055, 22]: E a> 0.0027619752 E b> 0.0017262344 E Data differs at [1481, 43]: E a> 0.0028488045 E b> 0.0017805028 E Data differs at [1480, 44]: E a> 0.0027677694 E b> 0.0017298559 E Data differs at [1481, 44]: E a> 0.008595343 E b> 0.0053720893 E Data differs at [1482, 44]: E a> 0.0031485166 E b> 0.001967823 E Data differs at [1481, 45]: E a> 0.0028412694 E b> 0.0017757935 E Data differs at [395, 52]: E a> 0.0038568275 E b> 0.0024105173 E ... E 643 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a6c6c610>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_rate.fits HTTP/1.1" 200 83934720 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[flat_field] | 1.91 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'flat_field' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_flat_field.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_flat_field.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.09002619 E b> 0.32738262 E Data differs at [920, 16]: E a> 0.052945346 E b> 0.18061078 E Data differs at [1055, 20]: E a> 0.33696544 E b> 0.3419909 E Data differs at [1054, 21]: E a> 0.34418294 E b> 0.31142434 E Data differs at [1056, 21]: E a> 0.40694606 E b> 0.37811327 E Data differs at [1055, 22]: E a> 0.27549037 E b> 0.28508887 E Data differs at [2043, 22]: E a> 0.2827905 E b> 0.34500143 E Data differs at [1779, 36]: E a> 0.22842531 E b> 0.18010382 E Data differs at [1481, 43]: E a> 0.56260204 E b> 0.606131 E Data differs at [1480, 44]: E a> 0.39401183 E b> 0.46689737 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.064758725 E ? - - ^ E b> 0.06478241 E ? ^^ E Data differs at [920, 16]: E a> 0.077060364 E ? -- ^ E b> 0.0770661 E ? ^ E Data differs at [1055, 20]: E a> 0.062456973 E b> 0.05093568 E Data differs at [1054, 21]: E a> 0.060491886 E b> 0.049189527 E Data differs at [1056, 21]: E a> 0.069683485 E b> 0.053012744 E Data differs at [1055, 22]: E a> 0.053755384 E b> 0.043908693 E Data differs at [2043, 22]: E a> 0.088225916 E b> 0.088232905 E Data differs at [1779, 36]: E a> 0.07692341 E b> 0.07691945 E Data differs at [1481, 43]: E a> 0.0735143 E b> 0.065456174 E Data differs at [1480, 44]: E a> 0.06601398 E b> 0.05592473 E ... E 843 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0017985646 E b> 0.0012791977 E Data differs at [1054, 21]: E a> 0.0015227707 E b> 0.0010836365 E Data differs at [1056, 21]: E a> 0.0022968536 E b> 0.0012097919 E Data differs at [1055, 22]: E a> 0.000658483 E b> 0.00053253345 E Data differs at [1481, 43]: E a> 0.0022495145 E b> 0.0023070655 E Data differs at [1480, 44]: E a> 0.001875957 E b> 0.0015727539 E Data differs at [1481, 44]: E a> 0.102758065 E b> 0.095894895 E Data differs at [1482, 44]: E a> 0.0024145104 E b> 0.002148688 E Data differs at [1481, 45]: E a> 0.0023373393 E b> 0.0020448994 E Data differs at [395, 52]: E a> 0.0015284668 E b> 0.0016359615 E ... E 630 different pixels found (0.02% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.0020990924 E b> 0.0013119327 E Data differs at [1054, 21]: E a> 0.0021330805 E b> 0.0013331752 E Data differs at [1056, 21]: E a> 0.0025537948 E b> 0.0015961218 E Data differs at [1055, 22]: E a> 0.0022289923 E b> 0.0013931202 E Data differs at [1481, 43]: E a> 0.0031442507 E b> 0.0019651568 E Data differs at [1480, 44]: E a> 0.0024772163 E b> 0.0015482602 E Data differs at [1481, 44]: E a> 0.008595343 E b> 0.0053720893 E Data differs at [1482, 44]: E a> 0.0029415304 E b> 0.0018384565 E Data differs at [1481, 45]: E a> 0.00322402 E b> 0.0020150125 E Data differs at [395, 52]: E a> 0.0033466618 E b> 0.0020916637 E ... E 643 different pixels found (0.02% different). E E Extension HDU 6 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 2.5097626e-07 E b> 3.318991e-06 E Data differs at [920, 16]: E a> 8.3140705e-08 E b> 9.674876e-07 E Data differs at [1054, 21]: E a> 3.417118e-06 E b> 2.7976055e-06 E Data differs at [1056, 21]: E a> 5.139539e-06 E b> 4.43705e-06 E Data differs at [1055, 22]: E a> 2.1661124e-06 E b> 2.319683e-06 E Data differs at [2043, 22]: E a> 2.5267427e-06 E b> 3.7607388e-06 E Data differs at [1779, 36]: E a> 1.6112641e-06 E b> 1.0016688e-06 E Data differs at [1481, 43]: E a> 1.0586824e-05 E b> 1.2288422e-05 E Data differs at [1480, 44]: E a> 4.672562e-06 E b> 6.5611416e-06 E Data differs at [1481, 44]: E a> 0.020079335 E b> 0.030386627 E ... E 818 different pixels found (0.02% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65dca30>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_flat_field.fits HTTP/1.1" 200 100742400 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[cal] | 1.52 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...al.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'cal' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_cal.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.039753504 E b> 0.14456466 E Data differs at [920, 16]: E a> 0.02337945 E b> 0.07975358 E Data differs at [1055, 20]: E a> 0.14879622 E b> 0.15101534 E Data differs at [1054, 21]: E a> 0.15198329 E b> 0.13751785 E Data differs at [1056, 21]: E a> 0.17969805 E b> 0.16696616 E Data differs at [1055, 22]: E a> 0.121650234 E b> 0.1258887 E Data differs at [2043, 22]: E a> 0.12487381 E b> 0.15234472 E Data differs at [1779, 36]: E a> 0.10086738 E b> 0.07952972 E Data differs at [1481, 43]: E a> 0.24843216 E b> 0.26765355 E Data differs at [1480, 44]: E a> 0.17398658 E b> 0.20617117 E ... E 869 different pixels found (0.02% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 0.02859597 E b> 0.028606428 E Data differs at [920, 16]: E a> 0.03402809 E b> 0.034030624 E Data differs at [1055, 20]: E a> 0.027579568 E b> 0.022492029 E Data differs at [1054, 21]: E a> 0.02671183 E b> 0.021720968 E Data differs at [1056, 21]: E a> 0.03077063 E b> 0.023409212 E Data differs at [1055, 22]: E a> 0.023737146 E b> 0.019389072 E Data differs at [2043, 22]: E a> 0.038958542 E b> 0.038961627 E Data differs at [1779, 36]: E a> 0.033967614 E b> 0.033965867 E Data differs at [1481, 43]: E a> 0.032462228 E b> 0.028903946 E Data differs at [1480, 44]: E a> 0.029150259 E b> 0.024695078 E ... E 838 different pixels found (0.02% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [5, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [6, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [7, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [8, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [9, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [10, 1]: E a> 2148007939 E b> 2149056515 E ... E 35705 different pixels found (0.85% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.00035070267 E b> 0.00024943118 E Data differs at [1054, 21]: E a> 0.00029692554 E b> 0.00021129864 E Data differs at [1056, 21]: E a> 0.0004478642 E b> 0.0002358977 E Data differs at [1055, 22]: E a> 0.00012839782 E b> 0.000103838865 E Data differs at [1481, 43]: E a> 0.00043863355 E b> 0.00044985546 E Data differs at [1480, 44]: E a> 0.00036579347 E b> 0.00030667178 E Data differs at [1481, 44]: E a> 0.020036828 E b> 0.018698577 E Data differs at [1482, 44]: E a> 0.00047080615 E b> 0.0004189734 E Data differs at [1481, 45]: E a> 0.00045575856 E b> 0.0003987356 E Data differs at [395, 52]: E a> 0.00029803623 E b> 0.00031899667 E ... E 629 different pixels found (0.01% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1055, 20]: E a> 0.00040930268 E b> 0.00025581417 E Data differs at [1054, 21]: E a> 0.00041593006 E b> 0.00025995626 E Data differs at [1056, 21]: E a> 0.00049796526 E b> 0.0003112283 E Data differs at [1055, 22]: E a> 0.00043463192 E b> 0.00027164494 E Data differs at [1481, 43]: E a> 0.00061309844 E b> 0.00038318656 E Data differs at [1480, 44]: E a> 0.00048303322 E b> 0.00030189575 E Data differs at [1481, 44]: E a> 0.0016760087 E b> 0.0010475054 E Data differs at [1482, 44]: E a> 0.00057356997 E b> 0.00035848122 E Data differs at [1481, 45]: E a> 0.0006286527 E b> 0.00039290794 E Data differs at [395, 52]: E a> 0.00065256667 E b> 0.00040785418 E ... E 643 different pixels found (0.02% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1945, 11]: E a> 4.893794e-08 E b> 6.4717113e-07 E Data differs at [920, 16]: E a> 1.6211633e-08 E b> 1.8865072e-07 E Data differs at [1054, 21]: E a> 6.6630497e-07 E b> 5.45506e-07 E Data differs at [1056, 21]: E a> 1.0021604e-06 E b> 8.651818e-07 E Data differs at [2043, 22]: E a> 4.926904e-07 E b> 7.333077e-07 E Data differs at [1779, 36]: E a> 3.141809e-07 E b> 1.9531572e-07 E Data differs at [1481, 43]: E a> 2.064328e-06 E b> 2.3961234e-06 E Data differs at [1480, 44]: E a> 9.111044e-07 E b> 1.2793591e-06 E Data differs at [1481, 44]: E a> 0.003915276 E b> 0.005925098 E Data differs at [1482, 44]: E a> 2.1715964e-06 E b> 2.3583993e-06 E ... E 597 different pixels found (0.01% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b56d0880>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117524160 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[i2d] | 1.59 | |
|
run_image2pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits'} fitsdiff_default_kwargs = {'atol': 0.0001, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["dq_init", "saturation", "superbias", "refpix", "linearity", "trapsfilled", "dark_current", "jump", "rate", "flat_field", "cal", "i2d"]) def test_nircam_image_stages12(run_image2pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Regression test of detector1 and image2 pipelines performed on NIRCam data.""" rtdata = rtdata_module rtdata.input = "jw42424001001_01101_00001_nrca5_uncal.fits" output = "jw42424001001_01101_00001_nrca5_" + suffix + ".fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code if suffix == "i2d": fitsdiff_default_kwargs["rtol"] = 5e-5 fitsdiff_default_kwargs["atol"] = 1e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 5e-05, Absolute tolerance: 0.0001 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [1969, 10]: E a> 0.15984109 E b> 0.16792287 E Data differs at [1970, 10]: E a> 0.0960092 E b> 0.16423722 E Data differs at [1969, 11]: E a> 0.20036528 E b> 0.20136714 E Data differs at [1970, 11]: E a> 0.16716906 E b> 0.17219812 E Data differs at [930, 17]: E a> 0.115546145 E b> 0.11749359 E Data differs at [931, 17]: E a> 0.13497004 E b> 0.13995413 E Data differs at [930, 18]: E a> 0.11211692 E b> 0.117040835 E Data differs at [931, 18]: E a> 0.11307905 E b> 0.12931742 E Data differs at [1067, 21]: E a> 0.15538444 E b> 0.15520869 E Data differs at [1068, 21]: E a> 0.15204114 E b> 0.15217957 E ... E 2410 different pixels found (0.06% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 0.02629995 E b> 0.022735761 E Data differs at [1068, 21]: E a> 0.023921274 E b> 0.023285905 E Data differs at [1066, 22]: E a> 0.025548926 E b> 0.022154603 E Data differs at [1067, 22]: E a> 0.015622238 E b> 0.012975088 E Data differs at [1068, 22]: E a> 0.027538575 E b> 0.022046449 E Data differs at [1069, 22]: E a> 0.024312938 E b> 0.023256807 E Data differs at [1066, 23]: E a> 0.024622891 E b> 0.023518944 E Data differs at [1067, 23]: E a> 0.021296604 E b> 0.017999826 E Data differs at [1068, 23]: E a> 0.026302129 E b> 0.02424953 E Data differs at [1069, 23]: E a> 0.015324785 E b> 0.0148078455 E ... E 1649 different pixels found (0.04% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 2742.6416 E b> 3716.786 E Data differs at [1068, 21]: E a> 3060.7256 E b> 3227.9043 E Data differs at [1066, 22]: E a> 2687.7239 E b> 3623.7373 E Data differs at [1067, 22]: E a> 826.6683 E b> 1253.9944 E Data differs at [1068, 22]: E a> 1953.3533 E b> 2772.7578 E Data differs at [1069, 22]: E a> 3241.673 E b> 3388.6853 E Data differs at [1066, 23]: E a> 2969.0122 E b> 3276.244 E Data differs at [1067, 23]: E a> 1859.6233 E b> 2772.005 E Data differs at [1068, 23]: E a> 2435.0532 E b> 2829.7239 E Data differs at [1069, 23]: E a> 1103.5242 E b> 1149.1068 E ... E 1732 different pixels found (0.04% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1068, 22]: E a> 0.00035593903 E b> 0.0002123474 E Data differs at [1498, 44]: E a> 0.012047942 E b> 0.011244834 E Data differs at [1499, 44]: E a> 0.004231013 E b> 0.0039408877 E Data differs at [1498, 45]: E a> 0.004089078 E b> 0.0038015156 E Data differs at [1499, 45]: E a> 0.0015877765 E b> 0.001486613 E Data differs at [197, 103]: E a> 0.00025734538 E b> 0.00013854748 E Data differs at [1856, 206]: E a> 0.00028086672 E b> 0.00017011206 E Data differs at [586, 223]: E a> 1.4786918 E b> 0.016489824 E Data differs at [587, 223]: E a> 0.07097444 E b> 0.0009425831 E Data differs at [586, 224]: E a> 5.1805506 E b> 0.05697716 E ... E 194 different pixels found (0.00% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1067, 21]: E a> 0.00036612444 E b> 0.00026081922 E Data differs at [1066, 22]: E a> 0.0003729281 E b> 0.00026844649 E Data differs at [1068, 22]: E a> 0.0004016168 E b> 0.0002729712 E Data differs at [1067, 23]: E a> 0.0003275944 E b> 0.00021689422 E Data differs at [1498, 43]: E a> 0.0004980092 E b> 0.00035829327 E Data differs at [1497, 44]: E a> 0.0004225794 E b> 0.00031350044 E Data differs at [1498, 44]: E a> 0.0012013637 E b> 0.0007561451 E Data differs at [1499, 44]: E a> 0.0007499872 E b> 0.00048909953 E Data differs at [1498, 45]: E a> 0.0007607483 E b> 0.0004958405 E Data differs at [1499, 45]: E a> 0.0005005839 E b> 0.00037930915 E ... E 756 different pixels found (0.02% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1498, 44]: E a> 0.002323961 E b> 0.0035167546 E Data differs at [1499, 44]: E a> 0.0007635071 E b> 0.0011547859 E Data differs at [1498, 45]: E a> 0.00073573296 E b> 0.0011129777 E Data differs at [1499, 45]: E a> 0.0002385609 E b> 0.00036037786 E Data differs at [586, 223]: E a> 3.579504 E b> 0.0004342406 E Data differs at [587, 223]: E a> 0.17142168 E b> 2.157141e-05 E Data differs at [586, 224]: E a> 12.542623 E b> 0.0015166934 E Data differs at [587, 224]: E a> 0.6482249 E b> 7.9360434e-05 E Data differs at [191, 252]: E a> 0.0155688925 E b> 0.018154027 E Data differs at [192, 252]: E a> 0.013071342 E b> 0.015241735 E ... E 196 different pixels found (0.00% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65f7400>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:96: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_i2d.fits HTTP/1.1" 200 120214080 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3[i2d] | 6.78 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits'} fitsdiff_default_kwargs = {'atol': 0.0002, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} suffix = 'i2d' @pytest.mark.bigdata @pytest.mark.parametrize("suffix", ["i2d"]) def test_nircam_image_stage3(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs, suffix): """Test that resampled i2d looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = f"jw42424-o002_t001_nircam_clear-f444w_{suffix}.fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") # Adjust tolerance for machine precision with float32 drizzle code fitsdiff_default_kwargs["rtol"] = 1e-4 fitsdiff_default_kwargs["atol"] = 2e-4 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 0.0001, Absolute tolerance: 0.0002 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> 0.1508750702820179 E b> 0.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [1565, 4]: E a> 0.005823679 E b> 0.15663332 E Data differs at [1566, 4]: E a> -0.028051918 E b> 0.12281047 E Data differs at [1567, 4]: E a> 0.010351804 E b> 0.16123411 E Data differs at [1568, 4]: E a> 0.027079035 E b> 0.17795493 E Data differs at [1569, 4]: E a> 0.0053295908 E b> 0.156203 E Data differs at [1570, 4]: E a> -0.002144072 E b> 0.14873089 E Data differs at [1571, 4]: E a> 0.025314786 E b> 0.17619129 E Data differs at [1572, 4]: E a> 0.05208291 E b> 0.20295873 E Data differs at [1573, 4]: E a> 0.032769606 E b> 0.18364361 E Data differs at [1574, 4]: E a> 0.005448792 E b> 0.15632308 E ... E 10277085 different pixels found (86.00% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [1307, 21]: E a> 0.025256284 E b> 0.022760967 E Data differs at [1308, 21]: E a> 0.023561431 E b> 0.022918332 E Data differs at [1306, 22]: E a> 0.024967602 E b> 0.022665657 E Data differs at [1307, 22]: E a> 0.019955853 E b> 0.016779983 E Data differs at [1308, 22]: E a> 0.02625984 E b> 0.022084026 E Data differs at [1309, 22]: E a> 0.023759712 E b> 0.02271393 E Data differs at [1306, 23]: E a> 0.024734506 E b> 0.02279626 E Data differs at [1307, 23]: E a> 0.019289114 E b> 0.016402682 E Data differs at [1308, 23]: E a> 0.026396586 E b> 0.023045842 E Data differs at [1309, 23]: E a> 0.019380784 E b> 0.018343305 E ... E 1120 different pixels found (0.01% different). E E Extension HDU 3 (CON, 1): E E Data contains differences: E Data differs at [1885, 270]: E a> 21 E b> 20 E Data differs at [3914, 277]: E a> 42 E b> 10 E Data differs at [719, 279]: E a> 20 E b> 21 E Data differs at [431, 282]: E a> 21 E b> 17 E Data differs at [1877, 284]: E a> 21 E b> 17 E Data differs at [1878, 284]: E a> 21 E b> 17 E Data differs at [436, 287]: E a> 20 E b> 21 E Data differs at [433, 288]: E a> 20 E b> 21 E Data differs at [4740, 339]: E a> 42 E b> 34 E Data differs at [4330, 392]: E a> 42 E b> 40 E ... E 148 different pixels found (0.00% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1565, 4]: E a> 7.309319 E b> 7.171116 E Data differs at [1566, 4]: E a> 22.518631 E b> 22.377031 E Data differs at [1567, 4]: E a> 37.01157 E b> 36.872105 E Data differs at [1568, 4]: E a> 49.936935 E b> 49.80254 E Data differs at [1569, 4]: E a> 65.601326 E b> 65.46431 E Data differs at [1570, 4]: E a> 76.80186 E b> 76.6702 E Data differs at [1571, 4]: E a> 88.43906 E b> 88.31088 E Data differs at [1572, 4]: E a> 114.759995 E b> 114.616394 E Data differs at [1573, 4]: E a> 131.87848 E b> 131.73204 E Data differs at [1574, 4]: E a> 138.65915 E b> 138.5211 E ... E 27991 different pixels found (0.23% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.008715443 E b> 0.008140911 E Data differs at [1739, 44]: E a> 0.003984044 E b> 0.0037175817 E Data differs at [1738, 45]: E a> 0.0062911706 E b> 0.0058591613 E 3 different pixels found (0.00% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.0009995435 E b> 0.00063645333 E Data differs at [1739, 44]: E a> 0.00071345706 E b> 0.00047994524 E Data differs at [1738, 45]: E a> 0.00087213825 E b> 0.0005644086 E Data differs at [1796, 101]: E a> 0.00050021254 E b> 0.0002617663 E Data differs at [1797, 101]: E a> 0.00067892275 E b> 0.00026894035 E Data differs at [1798, 101]: E a> 0.00049419183 E b> 0.00028671123 E Data differs at [1796, 102]: E a> 0.00057534705 E b> 0.00027770537 E Data differs at [1797, 102]: E a> 0.0008656035 E b> 0.00033669715 E Data differs at [1798, 102]: E a> 0.0005335814 E b> 0.00028685402 E Data differs at [1797, 103]: E a> 0.0007247192 E ? ^^^ E b> 0.00037192 E ? ^ E ... E 15 different pixels found (0.00% different). E E Extension HDU 7 (VAR_FLAT, 1): E E Data contains differences: E Data differs at [1738, 44]: E a> 0.0016601224 E b> 0.0025119758 E Data differs at [1739, 44]: E a> 0.00072056684 E b> 0.0010897379 E Data differs at [1738, 45]: E a> 0.0011766601 E b> 0.0017805282 E Data differs at [1739, 45]: E a> 0.0005043818 E b> 0.0007626725 E Data differs at [4399, 2232]: E a> 4.9913373 E b> 4.990525 E Data differs at [4398, 2233]: E a> 1.5806459 E b> 1.5812168 E Data differs at [4399, 2233]: E a> 1.8931155 E b> 1.8935876 E 7 different pixels found (0.00% different). E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Column BKGLEVEL data differs in row 0: E a> 0.15087507028201788 E b> 0.0 E Column BKGLEVEL data differs in row 1: E a> 0.15087507028201788 E b> 0.0 E Column BKGLEVEL data differs in row 2: E a> 0.1518323275845312 E b> 0.0009531162879104502 E Column BKGLEVEL data differs in row 3: E a> 0.1518323275845312 E b> 0.0009531162879104502 E Column BKGLEVEL data differs in row 4: E a> 0.1520789019602153 E b> 0.0012056025542624728 E Column BKGLEVEL data differs in row 5: E a> 0.1520789019602153 E b> 0.0012056025542624728 E 6 different table data element(s) found (0.25% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aacf8760>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:149: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_i2d.fits HTTP/1.1" 200 334788480 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_catalog | 0.35 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...sv', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv'} diff_astropy_tables = <function diff_astropy_tables.<locals>._diff_astropy_tables at 0x7f71a72f3940> @pytest.mark.bigdata def test_nircam_image_stage3_catalog(run_image3pipeline, rtdata_module, diff_astropy_tables): rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = "jw42424-o002_t001_nircam_clear-f444w_cat.ecsv" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") > assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-4, atol=1e-5) E AssertionError: Row count does not match E assert 124 == 123 E +124 E -123 /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:160: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_cat.ecsv HTTP/1.1" 200 143223 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_segm | 0.98 | |
|
run_image3pipeline = None rtdata_module = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_stage3_segm(run_image3pipeline, rtdata_module, fitsdiff_default_kwargs): """Test that segmentation map looks good for NIRCam imaging""" rtdata = rtdata_module rtdata.input = "jw42424-o002_20191220t214154_image3_001_asn.json" output = "jw42424-o002_t001_nircam_clear-f444w_segm.fits" rtdata.output = output rtdata.get_truth(f"truth/test_nircam_image_stages/{output}") diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_t001_nircam_clear-f444w_segm.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424-o002_t001_nircam_clear-f444w_segm.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> 0.1508750702820179 E b> 0.0 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword S_REGION has different values: E a> POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E b> POLYGON ICRS 22.046357408 11.980671438 22.046314156 12.021556953 21.955060494 12.021449814 21.955117587 11.980564315 E ? ^ ^ ^ E E Data contains differences: E Data differs at [3788, 137]: E a> 1 E b> 0 E Data differs at [136, 276]: E a> 5 E b> 0 E Data differs at [137, 276]: E a> 5 E b> 0 E Data differs at [714, 276]: E a> 4 E b> 0 E Data differs at [717, 276]: E a> 4 E b> 0 E Data differs at [1004, 276]: E a> 6 E b> 0 E Data differs at [1005, 276]: E a> 6 E b> 5 E Data differs at [1006, 276]: E a> 6 E b> 5 E Data differs at [1013, 276]: E a> 6 E b> 5 E Data differs at [1014, 276]: E a> 6 E b> 0 E ... E 13993 different pixels found (0.12% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a65dfd00>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:173: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424-o002_t001_nircam_clear-f444w_segm.fits HTTP/1.1" 200 47842560 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_image3_closedfile | 6.49 | |
|
run_image3_closedfile = None rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ts', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_image3_closedfile(run_image3_closedfile, rtdata, fitsdiff_default_kwargs): """Ensure production of Image3Pipeline output with data having closed file issues""" rtdata.output = 'jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits' rtdata.get_truth('truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits') diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/truth/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Primary HDU: E E Headers contain differences: E Headers have different number of cards: E a: 238 E b: 237 E Extra keyword 'S_SKYMAT' in a: 'SKIPPED' E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column S_SKYMAT of format 7A in a E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Extra column S_SKYMAT of format D in b E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71a5f6cac0>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py:194: AssertionError -----------------------------Captured stderr setup------------------------------ 2022-01-29 14:02:05,517 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf 2022-01-29 14:02:05,525 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 14:02:06,162 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 14:02:06,249 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 14:02:06,250 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 14:02:06,251 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 14:02:06,253 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 14:02:06,254 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:02:06,254 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:02:06,255 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 14:02:06,255 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:02:06,255 - stpipe - INFO - OS: Linux 2022-01-29 14:02:06,389 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). 2022-01-29 14:02:06,395 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 14:02:06,492 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 14:02:06,496 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 14:02:06,497 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 14:02:06,497 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 14:02:06,499 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 14:02:06,803 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 14:02:06,804 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 14:02:06,823 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 14:02:06,824 - stpipe.Image3Pipeline.skymatch - WARNING - * Group ID=1: Unable to compute sky value 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - WARNING - Unable to compute "global" sky value 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: None [not converted] 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) 2022-01-29 14:02:06,825 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 2022-01-29 14:02:06,826 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:06,829 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 14:02:06,953 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 14:02:06,954 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:02:06,969 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 14:02:07,089 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 2022-01-29 14:02:07,806 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 14:02:07,865 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:07,972 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,018 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 14:02:08,080 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,190 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,239 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 14:02:08,298 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,406 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,453 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 14:02:08,512 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,622 - stpipe.Image3Pipeline.resample - INFO - Drizzling (320, 320) --> (329, 777) 2022-01-29 14:02:08,688 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 2022-01-29 14:02:09,082 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits 2022-01-29 14:02:09,083 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 14:02:09,222 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). 2022-01-29 14:02:09,223 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 14:02:09,239 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 14:02:09,248 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F090W 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 14:02:09,249 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: SUB320 2022-01-29 14:02:09,297 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 0.50412 2022-01-29 14:02:09,403 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 1 sources 2022-01-29 14:02:09,492 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv 2022-01-29 14:02:09,595 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits 2022-01-29 14:02:09,596 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits 2022-01-29 14:02:09,597 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 14:02:09,597 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/fail_short_image3_asn.json HTTP/1.1" 200 2200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb2_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00617082001_02102_00001_nrcb4_cal.fits HTTP/1.1" 200 19327680 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0004.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.103, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/fail_short_image3_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.103, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617082001_02102_00001_nrcb2_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb2_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw00617082001_02102_00001_nrcb4_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb2_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0/jw00617082001_02102_00001_nrcb4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:06.823869 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 2 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:390 * Group ID=1: Unable to compute sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value WARNING stpipe.Image3Pipeline.skymatch:skymatch.py:355 Unable to compute "global" sky value INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: None [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb2_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw00617082001_02102_00001_nrcb4_cal.fits. Sky background: 0 (old=0, delta=0) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:06.825935 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:00.002066 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (329, 777) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 120.5G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 998.6K available system memory 120.5G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw00617-o082_t001_nircam_clear-f090w-sub320 DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 319.5), (-0.5, 319.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (320, 320) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (320, 320) --> (329, 777) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 177.427823560 50.175536391 177.430397558 50.173236192 177.438895159 50.177135957 177.436321360 50.179436344 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(329, 777) from jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_image3_closedfile0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F090W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: SUB320 DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 0.50412 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 1 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: jw00617-o082_t001_nircam_clear-f090w-sub320_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: jw00617-o082_t001_nircam_clear-f090w-sub320_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image/jw00617-o082_t001_nircam_clear-f090w-sub320_i2d.fits HTTP/1.1" 200 7344000 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target | 152.24 | |
|
rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...ving_targe0/truth/mt_assoc_i2d.fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits'} fitsdiff_default_kwargs = {'atol': 1e-05, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.bigdata def test_nircam_image_moving_target(rtdata, fitsdiff_default_kwargs): """Test resampled i2d of moving target exposures for NIRCam imaging""" rtdata.get_asn("nircam/image/mt_asn.json") rtdata.output = "mt_assoc_i2d.fits" args = ["calwebb_image3", rtdata.input] Step.from_cmdline(args) rtdata.get_truth("truth/test_nircam_mtimage/mt_assoc_i2d.fits") fitsdiff_default_kwargs["atol"] = 1e-5 diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_assoc_i2d.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/truth/mt_assoc_i2d.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-05 E E Primary HDU: E E Headers contain differences: E Keyword BKGLEVEL has different values: E a> -0.0042070511494792 E b> 0.01066505672404274 E E Extension HDU 1 (SCI, 1): E E Data contains differences: E Data differs at [6, 1]: E a> -0.17641975 E b> -0.19129185 E Data differs at [7, 1]: E a> -0.15290987 E b> -0.167782 E Data differs at [8, 1]: E a> -0.17446767 E b> -0.18933977 E Data differs at [9, 1]: E a> -0.34557453 E b> -0.36044663 E Data differs at [10, 1]: E a> -0.26017228 E b> -0.27504438 E Data differs at [11, 1]: E a> -0.17641784 E b> -0.19128995 E Data differs at [12, 1]: E a> -0.027480701 E b> -0.04235281 E Data differs at [13, 1]: E a> -0.22043116 E b> -0.23530328 E Data differs at [14, 1]: E a> -0.22509731 E b> -0.23996942 E Data differs at [15, 1]: E a> -0.317307 E b> -0.3321791 E ... E 6086893 different pixels found (90.77% different). E E Extension HDU 3 (CON, 1): E E Data contains differences: E Data differs at [2034, 226]: E a> 5 E b> 4 E Data differs at [2035, 226]: E a> 5 E b> 4 E Data differs at [2045, 226]: E a> 5 E b> 4 E Data differs at [2046, 226]: E a> 5 E b> 4 E Data differs at [2047, 226]: E a> 5 E b> 4 E Data differs at [2048, 226]: E a> 5 E b> 4 E Data differs at [2035, 227]: E a> 5 E b> 4 E Data differs at [2044, 227]: E a> 5 E b> 4 E Data differs at [2045, 227]: E a> 5 E b> 4 E Data differs at [2046, 227]: E a> 5 E b> 4 E ... E 1341 different pixels found (0.02% different). E E Extension HDU 4 (WHT, 1): E E Data contains differences: E Data differs at [1237, 1]: E a> 27.603218 E b> 26.987366 E Data differs at [1238, 1]: E a> 25.48684 E b> 24.458193 E Data differs at [806, 12]: E a> 20.45811 E b> 15.095991 E Data differs at [807, 12]: E a> 24.603935 E b> 22.769478 E Data differs at [806, 13]: E a> 21.618063 E b> 17.902166 E Data differs at [807, 13]: E a> 27.379896 E b> 26.098883 E Data differs at [1032, 13]: E a> 23.19034 E b> 19.716366 E Data differs at [1033, 13]: E a> 20.986961 E b> 15.961964 E Data differs at [1032, 14]: E a> 28.742466 E b> 27.199854 E Data differs at [1033, 14]: E a> 26.331074 E b> 24.088245 E ... E 17707 different pixels found (0.26% different). E E Extension HDU 8 (HDRTAB, 1): E E Headers contain differences: E Headers have different number of cards: E a: 808 E b: 816 E Extra keyword 'TTYPE400' in b: 'V3I_YANG' E Extra keyword 'TTYPE401' in b: 'RA_REF' E Extra keyword 'TTYPE402' in b: 'DEC_REF' E Extra keyword 'TTYPE403' in b: 'ROLL_REF' E Keyword TFIELDS has different values: E a> 399 E b> 403 E Keyword TTYPE286 has different values: E a> R_SPCWCS E b> R_SPKERN E Keyword TTYPE287 has different values: E a> R_STRAY E b> R_SPPROF E Keyword TTYPE288 has different values: E a> R_SUPERB E b> R_SPTRAC E Keyword TTYPE289 has different values: E a> R_THRPUT E b> R_SPCWCS E Keyword TTYPE290 has different values: E a> R_TRPDEN E b> R_STRAY E Keyword TTYPE291 has different values: E a> R_TRPPAR E b> R_SUPERB E Keyword TTYPE292 has different values: E a> R_TSPHOT E b> R_THRPUT E Keyword TTYPE293 has different values: E a> R_V2V3 E b> R_TRPDEN E Keyword TTYPE294 has different values: E a> R_WAVCOR E b> R_TRPPAR E Keyword TTYPE295 has different values: E a> R_WAVRAN E b> R_TSPHOT E Keyword TTYPE296 has different values: E a> S_PSFALI E b> R_V2V3 E Keyword TTYPE297 has different values: E a> S_AMIANA E b> R_WAVCOR E Keyword TTYPE298 has different values: E a> S_AMIAVG E b> R_WAVRAN E Keyword TTYPE299 has different values: E a> S_AMINOR E b> R_WAVMAP E Keyword TTYPE300 has different values: E a> S_WCS E b> S_PSFALI E Keyword TTYPE301 has different values: E a> S_MTWCS E b> S_AMIANA E Keyword TTYPE302 has different values: E a> S_BKDSUB E b> S_AMIAVG E Keyword TTYPE303 has different values: E a> S_BARSHA E b> S_AMINOR E Keyword TTYPE304 has different values: E a> S_COMB1D E b> S_WCS E Keyword TTYPE305 has different values: E a> S_IFUCUB E b> S_MTWCS E Keyword TTYPE306 has different values: E a> S_DARK E b> S_BKDSUB E Keyword TTYPE307 has different values: E a> S_DQINIT E b> S_BARSHA E Keyword TTYPE308 has different values: E a> S_TELEMI E b> S_COMB1D E Keyword TTYPE309 has different values: E a> S_ERRINI E b> S_IFUCUB E Keyword TTYPE310 has different values: E a> S_EXTR1D E b> S_DARK E Keyword TTYPE311 has different values: E a> S_EXTR2D E b> S_DQINIT E Keyword TTYPE312 has different values: E a> S_FRSTFR E b> S_TELEMI E Keyword TTYPE313 has different values: E a> S_FLAT E b> S_ERRINI E Keyword TTYPE314 has different values: E a> S_FRINGE E b> S_EXTR1D E Keyword TTYPE315 has different values: E a> S_GANSCL E b> S_EXTR2D E Keyword TTYPE316 has different values: E a> S_GRPSCL E b> S_FRSTFR E Keyword TTYPE317 has different values: E a> S_GUICDS E b> S_FLAT E Keyword TTYPE318 has different values: E a> S_IMPRNT E b> S_FRINGE E Keyword TTYPE319 has different values: E a> S_IPC E b> S_GANSCL E Keyword TTYPE320 has different values: E a> S_JUMP E b> S_GRPSCL E Keyword TTYPE321 has different values: E a> S_KLIP E b> S_GUICDS E Keyword TTYPE322 has different values: E a> S_LASTFR E b> S_IMPRNT E Keyword TTYPE323 has different values: E a> S_LINEAR E b> S_IPC E Keyword TTYPE324 has different values: E a> S_MSBSUB E b> S_JUMP E Keyword TTYPE325 has different values: E a> S_MRSMAT E b> S_KLIP E Keyword TTYPE326 has different values: E a> S_MSAFLG E b> S_LASTFR E Keyword TTYPE327 has different values: E a> S_OUTLIR E b> S_LINEAR E Keyword TTYPE328 has different values: E a> S_PTHLOS E b> S_MSBSUB E Keyword TTYPE329 has different values: E a> S_PERSIS E b> S_MRSMAT E Keyword TTYPE330 has different values: E a> S_PHOTOM E b> S_MSAFLG E Keyword TTYPE331 has different values: E a> S_RAMP E b> S_OUTLIR E Keyword TTYPE332 has different values: E a> S_REFPIX E b> S_PTHLOS E Keyword TTYPE333 has different values: E a> S_RESAMP E b> S_PERSIS E Keyword TTYPE334 has different values: E a> S_RESET E b> S_PHOTOM E Keyword TTYPE335 has different values: E a> S_RSCD E b> S_RAMP E Keyword TTYPE336 has different values: E a> S_SATURA E b> S_REFPIX E Keyword TTYPE337 has different values: E a> S_SKYMAT E b> S_RESAMP E Keyword TTYPE338 has different values: E a> S_SRCCAT E b> S_RESET E Keyword TTYPE339 has different values: E a> S_SRCTYP E b> S_RSCD E Keyword TTYPE340 has different values: E a> S_PSFSTK E b> S_SATURA E Keyword TTYPE341 has different values: E a> S_STRAY E b> S_SKYMAT E Keyword TTYPE342 has different values: E a> S_SUPERB E b> S_SRCCAT E Keyword TTYPE343 has different values: E a> S_TSPHOT E b> S_SRCTYP E Keyword TTYPE344 has different values: E a> S_TWKREG E b> S_PSFSTK E Keyword TTYPE345 has different values: E a> S_WAVCOR E b> S_STRAY E Keyword TTYPE346 has different values: E a> S_WFSCOM E b> S_SUPERB E Keyword TTYPE347 has different values: E a> S_WHTLIT E b> S_TSPHOT E Keyword TTYPE348 has different values: E a> BKGLEVEL E b> S_TWKREG E Keyword TTYPE349 has different values: E a> BKGSUB E b> S_WAVCOR E Keyword TTYPE350 has different values: E a> BUNIT E b> S_WFSCOM E Keyword TTYPE351 has different values: E a> PHOTMJSR E b> S_WHTLIT E Keyword TTYPE352 has different values: E a> PHOTUJA2 E b> BKGLEVEL E Keyword TTYPE353 has different values: E a> PIXAR_SR E b> BKGSUB E Keyword TTYPE354 has different values: E a> PIXAR_A2 E b> BUNIT E Keyword TTYPE355 has different values: E a> RADESYS E b> PHOTMJSR E Keyword TTYPE356 has different values: E a> RA_V1 E b> PHOTUJA2 E Keyword TTYPE357 has different values: E a> DEC_V1 E b> PIXAR_SR E Keyword TTYPE358 has different values: E a> PA_V3 E b> PIXAR_A2 E Keyword TTYPE359 has different values: E a> WCSAXES E b> RADESYS E Keyword TTYPE360 has different values: E a> CRPIX1 E b> RA_V1 E Keyword TTYPE361 has different values: E a> CRPIX2 E b> DEC_V1 E Keyword TTYPE362 has different values: E a> CRPIX3 E b> PA_V3 E Keyword TTYPE363 has different values: E a> CRVAL1 E b> WCSAXES E Keyword TTYPE364 has different values: E a> CRVAL2 E b> CRPIX1 E Keyword TTYPE365 has different values: E a> CRVAL3 E b> CRPIX2 E Keyword TTYPE366 has different values: E a> CTYPE1 E b> CRPIX3 E Keyword TTYPE367 has different values: E a> CTYPE2 E b> CRVAL1 E Keyword TTYPE368 has different values: E a> CTYPE3 E b> CRVAL2 E Keyword TTYPE369 has different values: E a> CUNIT1 E b> CRVAL3 E Keyword TTYPE370 has different values: E a> CUNIT2 E b> CTYPE1 E Keyword TTYPE371 has different values: E a> CUNIT3 E b> CTYPE2 E Keyword TTYPE372 has different values: E a> CDELT1 E b> CTYPE3 E Keyword TTYPE373 has different values: E a> CDELT2 E b> CUNIT1 E Keyword TTYPE374 has different values: E a> CDELT3 E b> CUNIT2 E Keyword TTYPE375 has different values: E a> PC1_1 E b> CUNIT3 E Keyword TTYPE376 has different values: E a> PC1_2 E b> CDELT1 E Keyword TTYPE377 has different values: E a> PC1_3 E b> CDELT2 E Keyword TTYPE378 has different values: E a> PC2_1 E b> CDELT3 E Keyword TTYPE379 has different values: E a> PC2_2 E b> PC1_1 E Keyword TTYPE380 has different values: E a> PC2_3 E b> PC1_2 E Keyword TTYPE381 has different values: E a> PC3_1 E b> PC1_3 E Keyword TTYPE382 has different values: E a> PC3_2 E b> PC2_1 E Keyword TTYPE383 has different values: E a> PC3_3 E b> PC2_2 E Keyword TTYPE384 has different values: E a> CD1_1 E b> PC2_3 E Keyword TTYPE385 has different values: E a> CD1_2 E b> PC3_1 E Keyword TTYPE386 has different values: E a> CD2_1 E b> PC3_2 E Keyword TTYPE387 has different values: E a> CD2_2 E b> PC3_3 E Keyword TTYPE388 has different values: E a> S_REGION E b> CD1_1 E Keyword TTYPE389 has different values: E a> WAVSTART E b> CD1_2 E Keyword TTYPE390 has different values: E a> WAVEND E b> CD2_1 E Keyword TTYPE391 has different values: E a> DISPAXIS E b> CD2_2 E Keyword TTYPE392 has different values: E a> SPORDER E b> S_REGION E Keyword TTYPE393 has different values: E a> V2_REF E b> WAVSTART E Keyword TTYPE394 has different values: E a> V3_REF E b> WAVEND E Keyword TTYPE395 has different values: E a> VPARITY E b> DISPAXIS E Keyword TTYPE396 has different values: E a> V3I_YANG E b> SPORDER E Keyword TTYPE397 has different values: E a> RA_REF E b> V2_REF E Keyword TTYPE398 has different values: E a> DEC_REF E b> V3_REF E Keyword TTYPE399 has different values: E a> ROLL_REF E b> VPARITY E E Data contains differences: E Tables have different number of columns: E a: 399 E b: 403 E Extra column R_SPKERN of format D in b E Extra column R_SPPROF of format D in b E Extra column R_SPTRAC of format D in b E Extra column R_WAVMAP of format D in b E Column BKGLEVEL data differs in row 0: E a> -0.0042070511494792 E b> 0.010665056724042742 E Column BKGLEVEL data differs in row 1: E a> 0.00713744052901899 E b> 0.02200954840254093 E Column BKGLEVEL data differs in row 2: E a> -0.014872107873521941 E b> 0.0 E Column BKGLEVEL data differs in row 3: E a> -0.0057721785810010175 E b> 0.009099929292520924 E 4 different table data element(s) found (0.25% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b5b01520>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:20: AssertionError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2022-01-29 14:02:15,788 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf 2022-01-29 14:02:15,818 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 14:02:17,104 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 14:02:17,362 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 14:02:17,363 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 14:02:17,364 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 14:02:17,365 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 14:02:17,366 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:02:17,367 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:02:17,368 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 14:02:17,368 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:02:17,368 - stpipe - INFO - OS: Linux 2022-01-29 14:02:17,577 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). 2022-01-29 14:02:17,582 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 14:02:17,842 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 14:02:17,845 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 14:02:17,846 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 14:02:17,847 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 14:02:17,848 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 14:02:19,064 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs running with args (<ModelContainer>,). 2022-01-29 14:02:19,065 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} 2022-01-29 14:02:19,181 - stpipe.Image3Pipeline.assign_mtwcs - INFO - Step assign_mtwcs done 2022-01-29 14:02:19,375 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 14:02:19,376 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 14:02:19,445 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 14:02:19,446 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:19,446 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 2022-01-29 14:02:22,645 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:22,646 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: -0.014872107873521941 [not converted] 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,148 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 2022-01-29 14:02:23,149 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 2022-01-29 14:02:23,149 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 14:02:23,161 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 14:02:23,303 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 14:02:23,304 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 14:02:23,310 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2022-01-29 14:02:26,225 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:30,960 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:35,681 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:40,530 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:02:44,826 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 4 images 2022-01-29 14:02:47,196 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2022-01-29 14:02:50,889 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:02:55,930 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:01,940 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:08,165 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2640, 2540) 2022-01-29 14:03:12,832 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,178 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,386 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,593 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits 2022-01-29 14:03:13,593 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 14:03:13,796 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 14:03:13,797 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:03:13,820 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 14:03:13,971 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for mt_assoc 2022-01-29 14:03:14,653 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 14:03:17,978 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:23,078 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:28,232 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:33,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:35,207 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 14:03:38,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:43,323 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:48,344 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:53,291 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:03:55,242 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 14:03:58,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:03,351 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:08,265 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:13,131 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:15,062 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 14:04:17,970 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:22,800 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:27,687 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:32,447 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2640, 2540) 2022-01-29 14:04:34,415 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 2022-01-29 14:04:35,034 - stpipe.Image3Pipeline.resample - INFO - Saved model in mt_assoc_i2d.fits 2022-01-29 14:04:35,034 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 14:04:35,212 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). 2022-01-29 14:04:35,213 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 14:04:35,235 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 14:04:35,245 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCBLONG 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F250M 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 14:04:35,246 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2022-01-29 14:04:35,295 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.14887 2022-01-29 14:04:37,866 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 612 sources 2022-01-29 14:04:38,879 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: mt_assoc_cat.ecsv 2022-01-29 14:04:39,023 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in mt_assoc_segm.fits 2022-01-29 14:04:39,024 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: mt_assoc_segm.fits 2022-01-29 14:04:39,024 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 14:04:39,025 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/mt_asn.json HTTP/1.1" 200 1072 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00001_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00002_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00003_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw12345024002_01101_00004_nrcb5_cal.fits HTTP/1.1" 200 117515520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0007.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.34, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/mt_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.34, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw12345024002_01101_00001_nrcb5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw12345024002_01101_00004_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0/jw12345024002_01101_00004_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:390 Step assign_mtwcs running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:394 Step assign_mtwcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0'} INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:493 Step assign_mtwcs done INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 14:02:19.445207 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 4 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: 0.0106651 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.0220095 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: 0.00909993 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: -0.014872107873521941 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00001_nrcb5_cal.fits. Sky background: -0.00420705 (old=0.0106651, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00002_nrcb5_cal.fits. Sky background: 0.00713744 (old=0.0220095, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00003_nrcb5_cal.fits. Sky background: -0.0148721 (old=0, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw12345024002_01101_00004_nrcb5_cal.fits. Sky background: -0.00577218 (old=0.00909993, delta=-0.0148721) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 14:02:23.148922 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:03.703715 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 120.5G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 25.6M available system memory 120.5G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 40.02942316869482 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.96489501312336 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 41.90170901932713 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 39.984982701026006 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2640, 2540) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0042070511494792 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 181211 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166619 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.00713744052901899 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176737 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4170416 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.014872107873521941 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174962 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4165841 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level -0.0057721785810010175 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176698 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167313 INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw12345024002_01101_00004_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 119.8G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 25.6M available system memory 119.8G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for mt_assoc DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2640, 2540) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 53.125131767 -27.821894281 53.125140406 -27.775691543 53.074899636 -27.775675104 53.074869634 -27.821877835 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in mt_assoc_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(2640, 2540) from mt_assoc_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCBLONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F250M INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.14887 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 612 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: mt_assoc_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: mt_assoc_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/mt_assoc_i2d.fits HTTP/1.1" 200 187937280 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range] | 1.79 | |
|
input_file = 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T14:52:00.650', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[midpt_not_in_mt_table_range]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_tnotinrange_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe1/jw00634_nrcblong_mttest_tnotinrange_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[with_mt_table] | 1.55 | |
|
input_file = 'jw00634_nrcblong_mttest_uncal.fits' rtdata = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...cal.fits', 'remote_results_path': None, 'test_name': None, 'traceback': None, 'truth': None, 'truth_remote': None} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} @pytest.mark.parametrize("input_file", [ 'jw00634_nrcblong_mttest_tnotinrange_uncal.fits', 'jw00634_nrcblong_no_mtt_uncal.fits', 'jw00634_nrcblong_mttest_uncal.fits', ], ids=["midpt_not_in_mt_table_range", "no_mt_table", "with_mt_table"] ) @pytest.mark.bigdata def test_nircam_image_moving_target_kwds(input_file, rtdata, fitsdiff_default_kwargs): """Tests for moving target table nkeyword additions""" # Get the input file rtdata.get_data(f"nircam/image/{input_file}") # The add_mt_kwds function overwrites its input, so output = input rtdata.output = rtdata.input > with datamodels.open(rtdata.output) as model: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py:41: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/datamodels/util.py:198: in open model = new_class(init, **kwargs) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/model_base.py:215: in __init__ asdffile = fits_support.from_fits(init, self._schema, self._ctx, /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:611: in from_fits known_keywords, known_datas = _load_from_schema( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:531: in _load_from_schema mschema.walk_schema(schema, callback) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:149: in walk_schema recurse(schema, [], None, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:137: in recurse recurse(val, path + [key], combiner, ctx) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/schema.py:124: in recurse if callback(schema, path, combiner, ctx, recurse): /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:509: in callback result = _fits_array_loader( /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:461: in _fits_array_loader return from_fits_hdu(hdu, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/fits_support.py:649: in from_fits_hdu data = properties._cast(data, schema) /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/properties.py:83: in _cast val = util.gentle_asarray(val, dtype) _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ a = FITS_rec([('2019-09-12T19:49:25.405', 1024., 1023., 1024., 1023., 0.00e+00, -6.2e-05, 5.93798877e+08, 4787944.03477098... '>f8'), ('mt_true_z_helio', '>f8'), ('mt_true_x_jwst', '>f8'), ('mt_true_y_jwst', '>f8'), ('mt_true_z_jwst', '>f8')])) dtype = dtype([('time', 'S23'), ('mt_detector_x', '<f4'), ('mt_detector_y', '<f4'), ('ref_pixel_RA', '<f8'), ('ref_pixel_Dec',..., '<f8'), ('mt_true_z_helio', '<f8'), ('mt_true_x_jwst', '<f8'), ('mt_true_y_jwst', '<f8'), ('mt_true_z_jwst', '<f8')]) def gentle_asarray(a, dtype): """ Performs an asarray that doesn't cause a copy if the byteorder is different. It also ignores column name differences -- the resulting array will have the column names from the given dtype. """ out_dtype = np.dtype(dtype) if isinstance(a, np.ndarray): in_dtype = a.dtype # Non-table array if in_dtype.fields is None and out_dtype.fields is None: if np.can_cast(in_dtype, out_dtype, 'equiv'): return a else: return np.asanyarray(a, dtype=out_dtype) elif in_dtype.fields is not None and out_dtype.fields is not None: # When a FITS file includes a pseudo-unsigned-int column, astropy will return # a FITS_rec with an incorrect table dtype. The following code rebuilds # in_dtype from the individual fields, which are correctly labeled with an # unsigned int dtype. # We can remove this once the issue is resolved in astropy: # https://github.com/astropy/astropy/issues/8862 if isinstance(a, fits.fitsrec.FITS_rec): new_in_dtype = [] updated = False for field_name in in_dtype.fields: table_dtype = in_dtype[field_name] field_dtype = a.field(field_name).dtype if np.issubdtype(table_dtype, np.signedinteger) and np.issubdtype(field_dtype, np.unsignedinteger): new_in_dtype.append((field_name, field_dtype)) updated = True else: new_in_dtype.append((field_name, table_dtype)) if updated: in_dtype = np.dtype(new_in_dtype) if in_dtype == out_dtype: return a in_names = {n.lower() for n in in_dtype.names} out_names = {n.lower() for n in out_dtype.names} if in_names == out_names: # Change the dtype name to match the fits record names # as the mismatch causes case insensitive access to fail out_dtype.names = in_dtype.names else: > raise ValueError( "Column names don't match schema. " "Schema has {0}. Data has {1}".format( str(out_names.difference(in_names)), str(in_names.difference(out_names)))) E ValueError: Column names don't match schema. Schema has {'mt_detector_y', 'mt_detector_x'}. Data has {'mt_sci_x', 'mt_sci_y'} /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/stdatamodels/util.py:69: ValueErrorrequest = <SubRequest 'generate_artifactory_json' for <Function test_nircam_image_moving_target_kwds[with_mt_table]>> artifactory_repos = ('jwst-pipeline', 'jwst-pipeline-results') @pytest.fixture(scope='function', autouse=True) def generate_artifactory_json(request, artifactory_repos): """Pytest fixture that leaves behind JSON upload and okify specfiles if the rtdata or rtdata_module fixtures are used in either a test or a module-scoped fixture that runs a pipeline and provides the results to a series of test. """ inputs_root, results_root = artifactory_repos def artifactory_result_path(): # Generate the Artifactory result path whoami = getpass.getuser() or 'nobody' user_tag = 'NOT_CI_{}'.format(whoami) build_tag = os.environ.get('BUILD_TAG', user_tag) build_matrix_suffix = os.environ.get('BUILD_MATRIX_SUFFIX', '0') subdir = '{}_{}_{}'.format(TODAYS_DATE, build_tag, build_matrix_suffix) testname = request.node.originalname or request.node.name return os.path.join(results_root, subdir, testname) + os.sep yield # Execute the following at test teardown upload_schema_pattern = [] okify_schema_pattern = [] rtdata = postmortem(request, 'rtdata') or postmortem(request, 'rtdata_module') if rtdata: try: # The _jail fixture from ci_watson sets tmp_path cwd = str(request.node.funcargs['tmp_path']) except KeyError: # The jail fixture (module-scoped) returns the path cwd = str(request.node.funcargs['jail']) rtdata.remote_results_path = artifactory_result_path() rtdata.test_name = request.node.name # Dump the failed test traceback into rtdata rtdata.traceback = str(request.node.report_call.longrepr) # Upload and allow okify of truth by rtdata.output, if the test did not # fail before producing rtdata.output if rtdata.output and os.path.exists(rtdata.output): # Write the rtdata class out as an ASDF file path_asdf = os.path.join(cwd, f"{request.node.name}_rtdata.asdf") rtdata.to_asdf(path_asdf) # Generate an OKify JSON file pattern = os.path.join(rtdata.remote_results_path, os.path.basename(rtdata.output)) okify_schema_pattern.append(pattern) okify_schema = generate_upload_schema(okify_schema_pattern, > f"{os.path.dirname(rtdata.truth_remote)}/") ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/conftest.py:117: _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ p = None def dirname(p): """Returns the directory component of a pathname""" > p = os.fspath(p) E TypeError: expected str, bytes or os.PathLike object, not NoneType ../../miniconda3/envs/jwst_validation_notebooks/lib/python3.9/posixpath.py:152: TypeError -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_mttest_uncal.fits HTTP/1.1" 200 83957760 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe3/jw00634_nrcblong_mttest_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rate] | 22.38 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes....fits', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rate.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rate.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rate.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Data contains differences: E Data differs at [60, 1]: E a> -3.6529362 E b> 0.9126485 E Data differs at [74, 1]: E a> -2.5214245 E b> -1.0083796 E Data differs at [81, 1]: E a> 1.7130512 E b> 5.626507 E Data differs at [92, 1]: E a> -1.8041989 E b> 2.300333 E Data differs at [93, 1]: E a> -1.4376131 E b> 2.812548 E Data differs at [107, 1]: E a> -1.0728153 E b> 2.3759737 E Data differs at [110, 1]: E a> -1.0782975 E b> 2.4619865 E Data differs at [113, 1]: E a> -3.6437645 E b> -1.4573903 E Data differs at [115, 1]: E a> 0.15931411 E b> 2.3071055 E Data differs at [120, 1]: E a> -9.490348 E b> -1.3068773 E ... E 4096 different pixels found (3.12% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 2.0452366 E b> 1.0857972 E Data differs at [81, 1]: E a> 1.1517268 E b> 2.2423935 E Data differs at [92, 1]: E a> 1.9480665 E b> 1.0646985 E Data differs at [93, 1]: E a> 2.1131043 E b> 1.1633353 E Data differs at [107, 1]: E a> 1.9880683 E b> 1.1069924 E Data differs at [110, 1]: E a> 1.978944 E b> 1.0914752 E Data differs at [115, 1]: E a> 1.9433244 E b> 1.1260422 E Data differs at [120, 1]: E a> 3.040765 E b> 1.9231486 E Data differs at [126, 1]: E a> 2.007433 E b> 1.1497276 E Data differs at [130, 1]: E a> 2.0925982 E b> 1.1971588 E ... E 3783 different pixels found (2.89% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [60, 1]: E a> 4 E b> 0 E Data differs at [81, 1]: E a> 0 E b> 4 E Data differs at [92, 1]: E a> 4 E b> 0 E Data differs at [93, 1]: E a> 4 E b> 0 E Data differs at [107, 1]: E a> 4 E b> 0 E Data differs at [110, 1]: E a> 4 E b> 0 E ... E 4195 different pixels found (3.20% different). E E Extension HDU 4 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 0.0 E b> 0.1332073 E Data differs at [81, 1]: E a> 0.3087059 E b> 0.95725334 E Data differs at [92, 1]: E a> 0.0 E b> 0.18484186 E Data differs at [93, 1]: E a> 0.0 E b> 0.23704636 E Data differs at [107, 1]: E a> 0.0 E b> 0.23732814 E Data differs at [110, 1]: E a> 0.0 E b> 0.21226332 E Data differs at [115, 1]: E a> 0.07509628 E b> 0.3426177 E Data differs at [126, 1]: E a> 0.0051914197 E b> 0.31572455 E Data differs at [130, 1]: E a> 0.14754042 E b> 0.37533247 E Data differs at [147, 1]: E a> 0.0 E b> 0.2419803 E ... E 3110 different pixels found (2.37% different). E E Extension HDU 5 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [60, 1]: E a> 4.1829925 E b> 1.0457482 E Data differs at [81, 1]: E a> 1.0177689 E b> 4.0710754 E Data differs at [92, 1]: E a> 3.794963 E b> 0.94874084 E Data differs at [93, 1]: E a> 4.4652104 E b> 1.1163026 E Data differs at [107, 1]: E a> 3.9524157 E b> 0.98810405 E Data differs at [110, 1]: E a> 3.9162192 E b> 0.9790549 E Data differs at [115, 1]: E a> 3.7014136 E b> 0.9253534 E Data differs at [120, 1]: E a> 9.246252 E b> 3.6985009 E Data differs at [126, 1]: E a> 4.0245953 E b> 1.0061489 E Data differs at [130, 1]: E a> 4.2314262 E b> 1.0578567 E ... E 3778 different pixels found (2.88% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71b5ae9280>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError -----------------------------Captured stderr setup------------------------------ 2022-01-29 14:04:51,324 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2022-01-29 14:04:51,339 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2022-01-29 14:04:51,340 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2022-01-29 14:04:51,340 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2022-01-29 14:04:51,341 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2022-01-29 14:04:51,342 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2022-01-29 14:04:51,342 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2022-01-29 14:04:51,343 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2022-01-29 14:04:51,344 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2022-01-29 14:04:51,344 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2022-01-29 14:04:51,345 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2022-01-29 14:04:51,346 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2022-01-29 14:04:51,346 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2022-01-29 14:04:51,347 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2022-01-29 14:04:51,348 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2022-01-29 14:04:51,349 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2022-01-29 14:04:51,350 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2022-01-29 14:04:51,350 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2022-01-29 14:04:51,350 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:04:51,350 - stpipe - INFO - OS: Linux 2022-01-29 14:04:51,491 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). 2022-01-29 14:04:51,499 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} 2022-01-29 14:04:51,551 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2022-01-29 14:04:51,569 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits'. 2022-01-29 14:04:51,571 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits'. 2022-01-29 14:04:51,572 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits'. 2022-01-29 14:04:51,574 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits'. 2022-01-29 14:04:51,575 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0026.fits'. 2022-01-29 14:04:51,577 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2022-01-29 14:04:51,578 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits'. 2022-01-29 14:04:51,580 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits'. 2022-01-29 14:04:51,582 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0008.fits'. 2022-01-29 14:04:51,583 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0008.fits'. 2022-01-29 14:04:51,585 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2022-01-29 14:04:51,900 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:51,900 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:51,938 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES and FRMDIVSR are equal; correction not needed 2022-01-29 14:04:51,939 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2022-01-29 14:04:51,940 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2022-01-29 14:04:52,070 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:52,071 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:52,092 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits 2022-01-29 14:04:53,333 - stpipe.Detector1Pipeline.dq_init - INFO - Extracting mask subarray to match science data 2022-01-29 14:04:53,346 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2022-01-29 14:04:53,467 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:53,468 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:53,490 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits 2022-01-29 14:04:55,048 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,048 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,049 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:55,082 - stpipe.Detector1Pipeline.saturation - INFO - Extracting reference file subarray to match science data 2022-01-29 14:04:55,097 - stpipe.Detector1Pipeline.saturation - INFO - Detected 513 saturated pixels 2022-01-29 14:04:55,097 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2022-01-29 14:04:55,103 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2022-01-29 14:04:55,228 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:55,229 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:55,229 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2022-01-29 14:04:55,231 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2022-01-29 14:04:55,356 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:55,357 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:55,379 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits 2022-01-29 14:04:57,440 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:04:57,490 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2022-01-29 14:04:57,607 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:57,608 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2022-01-29 14:04:57,617 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2022-01-29 14:04:58,620 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2022-01-29 14:04:58,742 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:04:58,743 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:04:58,763 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,388 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,389 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:01,421 - stpipe.Detector1Pipeline.linearity - INFO - Extracting linearity subarray to match science data 2022-01-29 14:05:01,460 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2022-01-29 14:05:01,583 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:01,584 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2022-01-29 14:05:03,154 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 14:05:03,694 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits 2022-01-29 14:05:03,698 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2022-01-29 14:05:03,823 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:03,823 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} 2022-01-29 14:05:03,846 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits 2022-01-29 14:05:10,013 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=5, nframes=1, groupgap=0 2022-01-29 14:05:10,013 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=600, nframes=1, groupgap=0 2022-01-29 14:05:10,142 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2022-01-29 14:05:10,274 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:10,275 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2022-01-29 14:05:10,284 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 4 sigma 2022-01-29 14:05:10,298 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits 2022-01-29 14:05:10,884 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits 2022-01-29 14:05:11,335 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2022-01-29 14:05:11,368 - stpipe.Detector1Pipeline.jump - INFO - Extracting gain subarray to match science data 2022-01-29 14:05:11,368 - stpipe.Detector1Pipeline.jump - INFO - Extracting readnoise subarray to match science data 2022-01-29 14:05:11,372 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2022-01-29 14:05:11,377 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 0 pixels with at least one CR and three groups 2022-01-29 14:05:11,406 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 1 pixels with at least one CR and two groups 2022-01-29 14:05:11,471 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 0.0986362 sec 2022-01-29 14:05:11,473 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 1.188454 2022-01-29 14:05:11,478 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2022-01-29 14:05:11,608 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:11,609 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2022-01-29 14:05:11,647 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits 2022-01-29 14:05:11,675 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2022-01-29 14:05:11,715 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting gain subarray to match science data 2022-01-29 14:05:11,716 - stpipe.Detector1Pipeline.ramp_fit - INFO - Extracting readnoise subarray to match science data 2022-01-29 14:05:12,113 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 5 2022-01-29 14:05:12,113 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2022-01-29 14:05:12,193 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2022-01-29 14:05:12,328 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:12,329 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:05:12,391 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 14:05:12,391 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 14:05:12,395 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 14:05:12,514 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). 2022-01-29 14:05:12,515 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} 2022-01-29 14:05:12,572 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 14:05:12,572 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 14:05:12,576 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 14:05:12,643 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rateints.fits 2022-01-29 14:05:12,644 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2022-01-29 14:05:12,705 - stpipe.Detector1Pipeline - INFO - Saved model in jw00617196001_02102_00001_nrca4_rate.fits 2022-01-29 14:05:12,705 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/subarray/jw00617196001_02102_00001_nrca4_uncal.fits HTTP/1.1" 200 1365120 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:330 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:330 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:330 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:330 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:330 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:330 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:330 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:330 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:330 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:330 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:330 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:330 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:330 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:330 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:330 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:330 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:330 GainScaleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Detector1Pipeline:step.py:390 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:394 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Detector1Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Detector1Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Detector1Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00617196001_02102_00001_nrca4_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0026.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0008.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0008.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:390 Step group_scale running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:394 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:49 NFRAMES and FRMDIVSR are equal; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:50 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:493 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:390 Step dq_init running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:394 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0058.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data INFO stpipe.Detector1Pipeline.dq_init:dq_initialization.py:66 Extracting mask subarray to match science data DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:step.py:493 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:390 Step saturation running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:394 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0067.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data INFO stpipe.Detector1Pipeline.saturation:saturation.py:66 Extracting reference file subarray to match science data DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 513 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 513 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:493 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:390 Step ipc running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:394 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:424 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:493 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:390 Step superbias running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:394 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0027.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:493 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:390 Step refpix running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:394 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout DEBUG stpipe.Detector1Pipeline.refpix:reffile_utils.py:40 Input exposure is a subarray readout INFO stpipe.Detector1Pipeline.refpix:step.py:493 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:390 Step linearity running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:394 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0053.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data INFO stpipe.Detector1Pipeline.linearity:linearity.py:68 Extracting linearity subarray to match science data DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:493 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:390 Step persistence running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:394 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:225 The input is a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:493 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:390 Step dark_current running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:394 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0269.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=5, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=600, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=600, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=5, size=64,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:493 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:390 Step jump running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:394 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'rejection_threshold': 4.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 4 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:62 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.jump:jump.py:68 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 512 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 2476 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 0 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 1 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 1 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0986362 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 0.0986362 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 1.188454 INFO stpipe.Detector1Pipeline.jump:step.py:493 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:390 Step ramp_fit running with args (<RampModel(1, 5, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:394 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0030.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0048.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1147 Extracting gain subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=135, subsize2=64 INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data INFO stpipe.Detector1Pipeline.ramp_fit:utils.py:1153 Extracting readnoise subarray to match science data DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:258 science xstart=1, xsize=2048, ystart=135, ysize=64 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:266 reference xstart=1, xsize=2048, ystart=1, ysize=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:274 slice xstart=0, xstop=2048, ystart=134, ystop=198 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=3 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 513: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 513: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -36.894756, 0.110178, 659.529541, 3.264899 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -36.894756, 0.110178, 659.529541, 3.264899 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 131072 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (5, 64, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 64 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 5 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.393971 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 0.393971 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:493 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<ImageModel(64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<CubeModel(1, 64, 2048) from jw00617196001_02102_00001_nrca4_uncal.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw00617196001_02102_00001_nrca4_rate.fits INFO stpipe.Detector1Pipeline:step.py:493 Step Detector1Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rate.fits HTTP/1.1" 200 2687040 | |||
| Failed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[rateints] | 0.30 | |
|
run_pipeline = {'input': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/tes...s', 'truth_remote': 'jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits'} fitsdiff_default_kwargs = {'atol': 1e-07, 'ignore_fields': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], 'ignore_hdus': ['ASDF'], 'ignore_keywords': ['DATE', 'CAL_VER', 'CAL_VCS', 'CRDS_VER', 'CRDS_CTX', 'NAXIS1', ...], ...} output = 'jw00617196001_02102_00001_nrca4_rateints.fits' @pytest.mark.bigdata @pytest.mark.parametrize("output", [ 'jw00617196001_02102_00001_nrca4_rate.fits', 'jw00617196001_02102_00001_nrca4_rateints.fits', 'jw00617196001_02102_00001_nrca4_trapsfilled.fits', ], ids=['rate', 'rateints', 'trapsfilled']) def test_nircam_detector1_subarray(run_pipeline, fitsdiff_default_kwargs, output): """ Regression test of calwebb_detector1 pipeline performed on NIRSpec data. """ rtdata = run_pipeline rtdata.output = output rtdata.get_truth(os.path.join("truth/test_nircam_subarray_4amp", output)) diff = FITSDiff(rtdata.output, rtdata.truth, **fitsdiff_default_kwargs) > assert diff.identical, diff.report() E AssertionError: E fitsdiff: 4.3.1 E a: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/jw00617196001_02102_00001_nrca4_rateints.fits E b: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_subarray_4amp_run_pipeline0/truth/jw00617196001_02102_00001_nrca4_rateints.fits E HDU(s) not to be compared: E ASDF E Keyword(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Table column(s) not to be compared: E CAL_VCS CAL_VER CRDS_CTX CRDS_VER DATE NAXIS1 TFORM* E Maximum number of different data values to be reported: 10 E Relative tolerance: 1e-05, Absolute tolerance: 1e-07 E E Extension HDU 1 (SCI, 1): E E Headers contain differences: E Keyword VELOSYS has different comments: E a> [m/s] Radial velocity wrt Barycenter E b> [m/s] Barycentric correction to radial velocity E E Data contains differences: E Data differs at [60, 1, 1]: E a> -3.6529362 E b> 0.9126485 E Data differs at [74, 1, 1]: E a> -2.5214245 E b> -1.0083796 E Data differs at [81, 1, 1]: E a> 1.7130512 E b> 5.626507 E Data differs at [92, 1, 1]: E a> -1.8041986 E b> 2.300333 E Data differs at [93, 1, 1]: E a> -1.4376131 E b> 2.812548 E Data differs at [107, 1, 1]: E a> -1.0728153 E b> 2.3759737 E Data differs at [110, 1, 1]: E a> -1.0782975 E b> 2.4619865 E Data differs at [113, 1, 1]: E a> -3.6437645 E b> -1.4573903 E Data differs at [115, 1, 1]: E a> 0.15931411 E b> 2.3071055 E Data differs at [120, 1, 1]: E a> -9.490348 E b> -1.3068774 E ... E 4096 different pixels found (3.12% different). E E Extension HDU 2 (ERR, 1): E E Data contains differences: E Data differs at [5, 1, 1]: E a> 0.0 E b> 0.94841516 E Data differs at [17, 1, 1]: E a> 0.0 E b> 1.0411029 E Data differs at [18, 1, 1]: E a> 0.0 E b> 0.95915216 E Data differs at [19, 1, 1]: E a> 0.0 E b> 0.98480403 E Data differs at [21, 1, 1]: E a> 0.0 E b> 0.9898501 E Data differs at [24, 1, 1]: E a> 0.0 E b> 1.0147899 E Data differs at [25, 1, 1]: E a> 0.0 E b> 0.9974037 E Data differs at [26, 1, 1]: E a> 0.0 E b> 0.9821483 E Data differs at [27, 1, 1]: E a> 0.0 E b> 0.9983641 E Data differs at [29, 1, 1]: E a> 0.0 E b> 1.0051337 E ... E 73841 different pixels found (56.34% different). E E Extension HDU 3 (DQ, 1): E E Data contains differences: E Data differs at [1, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [2, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [3, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [4, 1, 1]: E a> 2148007939 E b> 2149056515 E Data differs at [60, 1, 1]: E a> 4 E b> 0 E Data differs at [81, 1, 1]: E a> 0 E b> 4 E Data differs at [92, 1, 1]: E a> 4 E b> 0 E Data differs at [93, 1, 1]: E a> 4 E b> 0 E Data differs at [107, 1, 1]: E a> 4 E b> 0 E Data differs at [110, 1, 1]: E a> 4 E b> 0 E ... E 4195 different pixels found (3.20% different). E E Extension HDU 5 (VAR_POISSON, 1): E E Data contains differences: E Data differs at [60, 1, 1]: E a> 0.0 E b> 0.1332073 E Data differs at [81, 1, 1]: E a> 0.3087059 E b> 0.95725334 E Data differs at [92, 1, 1]: E a> 0.0 E b> 0.18484186 E Data differs at [93, 1, 1]: E a> 0.0 E b> 0.23704636 E Data differs at [107, 1, 1]: E a> 0.0 E b> 0.23732814 E Data differs at [110, 1, 1]: E a> 0.0 E b> 0.21226332 E Data differs at [115, 1, 1]: E a> 0.07509628 E b> 0.3426177 E Data differs at [126, 1, 1]: E a> 0.0051914197 E b> 0.31572455 E Data differs at [130, 1, 1]: E a> 0.14754042 E b> 0.37533247 E Data differs at [147, 1, 1]: E a> 0.0 E b> 0.2419803 E ... E 3110 different pixels found (2.37% different). E E Extension HDU 6 (VAR_RNOISE, 1): E E Data contains differences: E Data differs at [60, 1, 1]: E a> 4.1829925 E b> 1.0457482 E Data differs at [81, 1, 1]: E a> 1.0177689 E b> 4.0710754 E Data differs at [92, 1, 1]: E a> 3.794963 E b> 0.94874084 E Data differs at [93, 1, 1]: E a> 4.4652104 E b> 1.1163026 E Data differs at [107, 1, 1]: E a> 3.9524157 E b> 0.98810405 E Data differs at [110, 1, 1]: E a> 3.9162192 E b> 0.9790549 E Data differs at [115, 1, 1]: E a> 3.7014136 E b> 0.9253534 E Data differs at [120, 1, 1]: E a> 9.246252 E b> 3.6985009 E Data differs at [126, 1, 1]: E a> 4.0245953 E b> 1.0061489 E Data differs at [130, 1, 1]: E a> 4.2314262 E b> 1.0578567 E ... E 3778 different pixels found (2.88% different). E E assert False E + where False = <astropy.io.fits.diff.FITSDiff object at 0x7f71aae28790>.identical /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py:43: AssertionError -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_rateints.fits HTTP/1.1" 200 2689920 | |||
| Skipped | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_setpointing | 0.86 | |
|
('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py', 93, 'Skipped: Engineering Database not available.') -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2022-01-29 14:05:40,043 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits 2022-01-29 14:05:40,119 - stpipe - INFO - Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db 2022-01-29 14:05:40,119 - stpipe - INFO - Updating WCS for aperture NRCA5_GRISM256_F444W 2022-01-29 14:05:40,120 - stpipe - INFO - Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 2022-01-29 14:05:40,120 - stpipe - INFO - loaded 1 table rows 2022-01-29 14:05:40,123 - stpipe - INFO - TSO exposure: 2022-01-29 14:05:40,123 - stpipe - INFO - setting xref_sci to 769.0 2022-01-29 14:05:40,123 - stpipe - INFO - setting yref_sci to 130.0 2022-01-29 14:05:40,125 - stpipe - INFO - Updating wcs from telemetry. 2022-01-29 14:05:40,126 - stpipe - INFO - Determining pointing between observations times (mjd): 2022-01-29 14:05:40,126 - stpipe - INFO - obsstart: 58626.20879027639 obsend: 58626.2095384375 2022-01-29 14:05:40,126 - stpipe - INFO - Telemetry search tolerance: 60 2022-01-29 14:05:40,127 - stpipe - INFO - Reduction function: <function pointing_from_average at 0x7f71b67a33a0> -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits HTTP/1.1" 200 25214400 INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/jw00721012001_03103_00001-seg001_nrcalong_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing0/prd.db INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCA5_GRISM256_F444W INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCA5_GRISM256_F444W with USEAFTER 2019-05-23 INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 769.0 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 130.0 INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=98.83149583333334, dec=-66.82697777777776, pa=None) DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=98.83149583333334, dec=-66.82697777777776, pa=None) DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: FINEGUIDE DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: FINEGUIDE DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.10297636 -0.12983654 -0.10852731] DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.10297636 -0.12983654 -0.10852731] INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f71b67a33a0> INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f71b67a33a0> DEBUG stpipe:connectionpool.py:228 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:228 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:456 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 DEBUG stpipe:connectionpool.py:456 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 | |||
| Skipped | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_setpointing | 0.49 | |
|
('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py', 81, 'Skipped: Engineering Database not available.') -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2022-01-29 14:05:51,942 - stpipe - INFO - Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits 2022-01-29 14:05:52,074 - stpipe - INFO - Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db 2022-01-29 14:05:52,074 - stpipe - INFO - Updating WCS for aperture NRCB1_SUB64P 2022-01-29 14:05:52,074 - stpipe - INFO - Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 2022-01-29 14:05:52,075 - stpipe - INFO - loaded 1 table rows 2022-01-29 14:05:52,077 - stpipe - INFO - Setting basic FITS WCS keywords for imaging 2022-01-29 14:05:52,083 - stpipe - INFO - TSO exposure: 2022-01-29 14:05:52,083 - stpipe - INFO - setting xref_sci to 32.5 2022-01-29 14:05:52,083 - stpipe - INFO - setting yref_sci to 32.5 2022-01-29 14:05:52,085 - stpipe - INFO - Updating wcs from telemetry. 2022-01-29 14:05:52,086 - stpipe - INFO - Determining pointing between observations times (mjd): 2022-01-29 14:05:52,086 - stpipe - INFO - obsstart: 58626.20879027639 obsend: 58626.2095384375 2022-01-29 14:05:52,086 - stpipe - INFO - Telemetry search tolerance: 60 2022-01-29 14:05:52,086 - stpipe - INFO - Reduction function: <function pointing_from_average at 0x7f71b67a33a0> -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/common/prd.db HTTP/1.1" 200 353280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits HTTP/1.1" 200 181440 INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits INFO stpipe:set_telescope_pointing.py:404 Updating WCS info for file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/jw00312006001_02102_00001-seg001_nrcb1_uncal.fits DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db INFO stpipe:siafdb.py:241 Using SIAF database from /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_setpointing1/prd.db INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:set_telescope_pointing.py:538 Updating WCS for aperture NRCB1_SUB64P INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:siafdb.py:269 Quering SIAF for aperture NRCB1_SUB64P with USEAFTER 2017-09-20 INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:siafdb.py:287 loaded 1 table rows INFO stpipe:set_telescope_pointing.py:2523 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:2523 Setting basic FITS WCS keywords for imaging INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2543 TSO exposure: INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2544 setting xref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:2545 setting yref_sci to 32.5 INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. INFO stpipe:set_telescope_pointing.py:640 Updating wcs from telemetry. DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=None, dec=None, pa=None) DEBUG stpipe:set_telescope_pointing.py:667 guide_star_wcs from model: WCSRef(ra=None, dec=None, pa=None) DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: COARSE DEBUG stpipe:set_telescope_pointing.py:668 PCS_MODE: COARSE DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.02882949 -0.04659458 0.01740115] DEBUG stpipe:set_telescope_pointing.py:676 JWST Velocity: [ 0.02882949 -0.04659458 0.01740115] INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2213 Determining pointing between observations times (mjd): INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2214 obsstart: 58626.20879027639 obsend: 58626.2095384375 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2215 Telemetry search tolerance: 60 INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f71b67a33a0> INFO stpipe:set_telescope_pointing.py:2216 Reduction function: <function pointing_from_average at 0x7f71b67a33a0> DEBUG stpipe:connectionpool.py:228 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:228 Starting new HTTP connection (1): pwjwdmsemwebag.stsci.edu:80 DEBUG stpipe:connectionpool.py:456 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 DEBUG stpipe:connectionpool.py:456 http://pwjwdmsemwebag.stsci.edu:80 "GET /JWDMSEngFqAcc/TlmMnemonicDataSrv.svc/MetaData/TlmMnemonics/ HTTP/1.1" 401 1293 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002001_01101_00001] | 212.04 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 13:47:03,395 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf 2022-01-29 13:47:03,427 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 13:47:04,416 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 13:47:04,654 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 13:47:04,655 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 13:47:04,656 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 13:47:04,657 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 13:47:04,658 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 13:47:04,659 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:47:04,660 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 13:47:04,660 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:47:04,660 - stpipe - INFO - OS: Linux 2022-01-29 13:47:04,793 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). 2022-01-29 13:47:04,799 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 13:47:05,074 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 13:47:05,082 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 13:47:05,083 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 13:47:05,085 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:47:05,086 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 13:47:05,913 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2022-01-29 13:47:05,914 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2022-01-29 13:47:17,956 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. 2022-01-29 13:47:30,221 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. 2022-01-29 13:47:41,861 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. 2022-01-29 13:47:41,873 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:41,873 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2022-01-29 13:47:41,873 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2022-01-29 13:47:41,894 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': 2022-01-29 13:47:41,894 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002001_01101_00001_nrca5_cal 2022-01-29 13:47:41,913 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': 2022-01-29 13:47:41,913 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002003_01101_00009_nrca5_cal 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - jw01069002004_01101_00013_nrca5_cal 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:41.942646 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2022-01-29 13:47:41,942 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:42,178 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image 2022-01-29 13:47:42,183 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2022-01-29 13:47:42,351 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. 2022-01-29 13:47:42,351 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2022-01-29 13:47:42,352 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. 2022-01-29 13:47:42,353 - stpipe.Image3Pipeline.tweakreg - INFO - Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... 2022-01-29 13:47:42,353 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.0270502 FIT MAE: 0.0197936 2022-01-29 13:47:42,356 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 30 objects. 2022-01-29 13:47:42,403 - stpipe.Image3Pipeline.tweakreg - INFO - Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. 2022-01-29 13:47:42,453 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2022-01-29 13:47:42,635 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. 2022-01-29 13:47:42,635 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2022-01-29 13:47:42,637 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. 2022-01-29 13:47:42,637 - stpipe.Image3Pipeline.tweakreg - INFO - Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... 2022-01-29 13:47:42,638 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2022-01-29 13:47:42,640 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: 2022-01-29 13:47:42,640 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 2022-01-29 13:47:42,640 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 2022-01-29 13:47:42,640 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 2022-01-29 13:47:42,641 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:42,641 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.100896 FIT MAE: 0.0550174 2022-01-29 13:47:42,641 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 26 objects. 2022-01-29 13:47:42,684 - stpipe.Image3Pipeline.tweakreg - INFO - Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. 2022-01-29 13:47:42,685 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:42,685 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:42.685287 2022-01-29 13:47:42,685 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.742641 2022-01-29 13:47:42,685 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:49,840 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:49,840 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:49.840440 2022-01-29 13:47:49,840 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2022-01-29 13:47:49,840 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:50,051 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: 987654' to the reference catalog. 2022-01-29 13:47:50,211 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. 2022-01-29 13:47:50,211 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2022-01-29 13:47:50,231 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. 2022-01-29 13:47:50,233 - stpipe.Image3Pipeline.tweakreg - INFO - Found 250 matches for 'GROUP ID: 987654'... 2022-01-29 13:47:50,233 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2022-01-29 13:47:50,236 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: 987654: 2022-01-29 13:47:50,236 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 2022-01-29 13:47:50,237 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 2022-01-29 13:47:50,237 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 2022-01-29 13:47:50,237 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:50,237 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.226815 FIT MAE: 0.110685 2022-01-29 13:47:50,237 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 240 objects. 2022-01-29 13:47:50,341 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:50,342 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:50.341903 2022-01-29 13:47:50,342 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.501463 2022-01-29 13:47:50,342 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:47:50,703 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits 2022-01-29 13:47:50,937 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits 2022-01-29 13:47:51,189 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits 2022-01-29 13:47:51,189 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2022-01-29 13:47:51,505 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 13:47:51,507 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 13:47:51,573 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:51,573 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:47:51.573564 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:51,574 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 13:47:52,765 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2022-01-29 13:47:52,766 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 2022-01-29 13:47:52,766 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 2022-01-29 13:47:52,766 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:52,766 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 13:47:53,179 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.10057727969919472 [not converted] 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:47:53.180777 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.607213 2022-01-29 13:47:53,180 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:47:53,192 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 13:47:53,458 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 13:47:53,460 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:47:53,466 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 3 inputs 2022-01-29 13:47:59,874 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:48:07,113 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:48:14,203 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:48:18,003 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2022-01-29 13:48:22,037 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2022-01-29 13:48:27,646 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2022-01-29 13:48:33,750 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2022-01-29 13:48:39,989 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (3123, 3050) 2022-01-29 13:48:42,931 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits 2022-01-29 13:48:43,129 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits 2022-01-29 13:48:43,326 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits 2022-01-29 13:48:43,326 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:48:43,517 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 13:48:43,518 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:48:43,539 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:48:43,687 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for LMC_F277W_modA_dither_mosaic 2022-01-29 13:48:44,342 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 13:48:47,814 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:48:53,012 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:48:58,166 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:00,066 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:49:03,606 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:08,820 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:14,017 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:15,959 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:49:19,513 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:24,848 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:30,080 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:32,002 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:49:35,691 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:41,039 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:46,376 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (3123, 3050) 2022-01-29 13:49:48,332 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 2022-01-29 13:49:48,948 - stpipe.Image3Pipeline.resample - INFO - Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits 2022-01-29 13:49:48,948 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 13:49:49,087 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). 2022-01-29 13:49:49,089 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 13:49:49,111 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 13:49:49,125 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 13:49:49,126 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 13:49:49,126 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: NRCALONG 2022-01-29 13:49:49,126 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F277W 2022-01-29 13:49:49,126 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 13:49:49,126 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2022-01-29 13:49:49,178 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 2.31542 2022-01-29 13:49:51,553 - stpipe.Image3Pipeline.source_catalog - INFO - Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). 2022-01-29 13:49:52,564 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 25622 sources 2022-01-29 13:50:16,078 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: LMC_F277W_modA_dither_mosaic_cat.ecsv 2022-01-29 13:50:16,318 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in LMC_F277W_modA_dither_mosaic_segm.fits 2022-01-29 13:50:16,320 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: LMC_F277W_modA_dither_mosaic_segm.fits 2022-01-29 13:50:16,326 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 13:50:16,328 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/level3_F277W_3img_asn.json HTTP/1.1" 200 914 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002001_01101_00001_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002003_01101_00009_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw01069002004_01101_00013_nrca5_cal.fits HTTP/1.1" 200 117509760 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0018.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 1.444, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/level3_F277W_3img_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw01069002001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002003_01101_00009_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw01069002004_01101_00013_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image3Pipeline.tweakreg:step.py:390 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:394 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 1.444, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': True, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002003_01101_00009_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw01069002004_01101_00013_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002001_01101_00001_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002003_01101_00009_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002003_01101_00009_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw01069002004_01101_00013_nrca5_cal': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw01069002004_01101_00013_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:41.942646 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:41.942646 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw01069002004_01101_00013_nrca5_cal' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002001_01101_00001_nrca5_cal' catalog with sources from the reference 'jw01069002004_01101_00013_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.03125, 0.03125 with significance of 29.58 and 64 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 31 matches for 'GROUP ID: jw01069002001_01101_00001_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002001_01101_00001_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.00581452 YSH: -0.0112068 PROPER ROT: -0.0111354 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: -0.0111354 SKEW: 0.00263366 ROT_X: -0.0124522 ROT_Y: -0.00981853 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999795 SCALE_X: 0.999593 SCALE_Y: 0.999998 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.0270502 FIT MAE: 0.0197936 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 30 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 69 unmatched sources from 'GROUP ID: jw01069002001_01101_00001_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw01069002003_01101_00009_nrca5_cal' catalog with sources from the reference 'jw01069002001_01101_00001_nrca5_cal' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.003803, -0.02246 with significance of 29.51 and 74 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 27 matches for 'GROUP ID: jw01069002003_01101_00009_nrca5_cal'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw01069002003_01101_00009_nrca5_cal: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0165265 YSH: -0.0112215 PROPER ROT: 0.00240865 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00240865 SKEW: 0.0238052 ROT_X: -0.00949398 ROT_Y: 0.0143113 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00016 SCALE_X: 0.999797 SCALE_Y: 1.00051 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.100896 FIT MAE: 0.0550174 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 26 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:651 Added 74 unmatched sources from 'GROUP ID: jw01069002003_01101_00009_nrca5_cal' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:42.685287 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:42.685287 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.742641 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.742641 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:228 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:228 Starting new HTTP connection (1): gsss.stsci.edu:80 DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:456 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None DEBUG stpipe.Image3Pipeline.tweakreg:connectionpool.py:456 http://gsss.stsci.edu:80 "GET /webservices/vo/CatalogSearch.aspx?RA=80.49211032488223&DEC=-69.49384642479382&SR=0.03814898137128895&FORMAT=CSV&CAT=GAIADR2&MINDET=5 HTTP/1.1" 200 None INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:49.840440 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:47:49.840440 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: 987654' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw0106900200' catalog with sources from the reference 'Unnamed' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.02156, 0.05114 with significance of 58.89 and 938 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 250 matches for 'GROUP ID: 987654'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: 987654: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: -0.0148441 YSH: 0.037587 PROPER ROT: 0.0134828 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.0134828 SKEW: 0.0189628 ROT_X: 0.00400137 ROT_Y: 0.0229641 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00017 SCALE_X: 1.00049 SCALE_Y: 0.999847 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.226815 FIT MAE: 0.110685 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 240 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:50.341903 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:47:50.341903 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.501463 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.501463 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw01069002001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw01069002003_01101_00009_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw01069002004_01101_00013_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:493 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:47:51.573564 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:47:51.573564 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 3 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:292 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.00556799 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:434 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.00124528 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.10057727969919472 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.100577 (old=0, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002003_01101_00009_nrca5_tweakreg.fits. Sky background: 0.106145 (old=0.00556799, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:430 * Image ID=jw01069002004_01101_00013_nrca5_tweakreg.fits. Sky background: 0.101823 (old=0.00124528, delta=0.100577) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:47:53.180777 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:47:53.180777 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.607213 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:01.607213 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 3 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 121.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 36.3M available system memory 121.2G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 61.63065148580338 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 62.07189388093626 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 58.78218190789646 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (3123, 3050) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10057727969919472 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 174849 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4107950 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10614526713305913 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 178346 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4103636 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.10182255727922683 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 176195 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4183453 INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw01069002001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw01069002003_01101_00009_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw01069002004_01101_00013_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.2G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 36.3M available system memory 120.2G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for LMC_F277W_modA_dither_mosaic DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (3123, 3050) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 80.568461033 -69.521045366 80.567891480 -69.466457834 80.415899853 -69.466586212 80.416081737 -69.521174070 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in LMC_F277W_modA_dither_mosaic_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(3123, 3050) from LMC_F277W_modA_dither_mosaic_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 3.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: NRCALONG INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F277W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 2.31542 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:327 Background could not be estimated in meshes. Using the entire unmasked array for background estimation: bkg_boxsize=(3123, 3050). INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 25622 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: LMC_F277W_modA_dither_mosaic_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in LMC_F277W_modA_dither_mosaic_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: LMC_F277W_modA_dither_mosaic_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002001_01101_00001_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002001_01101_00001_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002001_01101_00001_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002001_01101_00001_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002001_01101_00001_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002001_01101_00001_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002001_01101_00001_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002003_01101_00009] | 9.19 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002003_01101_00009_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002003_01101_00009_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002003_01101_00009_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002003_01101_00009_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002003_01101_00009_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002003_01101_00009_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002003_01101_00009_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_align_to_gaia.py::test_tweakreg_with_gaia[jw01069002004_01101_00013] | 8.52 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002004_01101_00013_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002004_01101_00013_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002004_01101_00013_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_align_to_gaia/jw01069002004_01101_00013_nrca5_a3001_crf.fits HTTP/1.1" 200 117524160 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/jw01069002004_01101_00013_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002004_01101_00013_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_align_to_gaia_rtdata_module0/truth/jw01069002004_01101_00013_nrca5_a3001_crf.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfalign] | 99.83 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 13:50:47,500 - stpipe.Coron3Pipeline - INFO - Coron3Pipeline instance created. 2022-01-29 13:50:47,501 - stpipe.Coron3Pipeline.stack_refs - INFO - StackRefsStep instance created. 2022-01-29 13:50:47,502 - stpipe.Coron3Pipeline.align_refs - INFO - AlignRefsStep instance created. 2022-01-29 13:50:47,503 - stpipe.Coron3Pipeline.klip - INFO - KlipStep instance created. 2022-01-29 13:50:47,504 - stpipe.Coron3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 13:50:47,505 - stpipe.Coron3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:50:47,505 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:50:47,505 - stpipe - INFO - OS: Linux 2022-01-29 13:50:47,669 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). 2022-01-29 13:50:47,673 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:50:47,674 - stpipe.Coron3Pipeline - INFO - Starting calwebb_coron3 ... 2022-01-29 13:50:47,928 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] 2022-01-29 13:50:47,944 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:50:47,946 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2022-01-29 13:50:48,187 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] 2022-01-29 13:50:48,190 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:50:48,191 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2022-01-29 13:50:48,436 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] 2022-01-29 13:50:48,439 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:50:48,440 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2022-01-29 13:50:48,534 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] 2022-01-29 13:50:48,536 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:50:48,537 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2022-01-29 13:50:48,626 - stpipe.Coron3Pipeline - INFO - Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] 2022-01-29 13:50:48,628 - stpipe.Coron3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:50:48,629 - stpipe.Coron3Pipeline - INFO - Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. 2022-01-29 13:50:49,510 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). 2022-01-29 13:50:49,512 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:50:49,521 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2022-01-29 13:50:50,539 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2022-01-29 13:50:53,102 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits 2022-01-29 13:50:53,103 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:50:53,384 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). 2022-01-29 13:50:53,385 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:50:53,394 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2022-01-29 13:50:54,328 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2022-01-29 13:50:56,917 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits 2022-01-29 13:50:56,917 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:50:57,131 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). 2022-01-29 13:50:57,133 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:50:57,142 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 33 inputs 2022-01-29 13:50:58,110 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 33 images 2022-01-29 13:51:00,575 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits 2022-01-29 13:51:00,575 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:51:00,728 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs running with args (<ModelContainer>,). 2022-01-29 13:51:00,729 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} 2022-01-29 13:51:00,747 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 1 to output stack 2022-01-29 13:51:00,754 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 2 to output stack 2022-01-29 13:51:00,758 - stpipe.Coron3Pipeline.stack_refs - INFO - Adding psf member 3 to output stack 2022-01-29 13:51:00,794 - stpipe.Coron3Pipeline.stack_refs - INFO - Step stack_refs done 2022-01-29 13:51:00,875 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits 2022-01-29 13:51:01,074 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). 2022-01-29 13:51:01,075 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:51:01,083 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2022-01-29 13:51:01,268 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2022-01-29 13:51:01,692 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits 2022-01-29 13:51:01,692 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:51:01,816 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2022-01-29 13:51:01,817 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2022-01-29 13:51:01,825 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2022-01-29 13:51:01,914 - stpipe.Coron3Pipeline.align_refs - WARNING - Median filter returned NaN setting value to 0. 2022-01-29 13:51:38,274 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2022-01-29 13:51:38,498 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits 2022-01-29 13:51:38,640 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). 2022-01-29 13:51:38,641 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2022-01-29 13:51:38,649 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2022-01-29 13:51:39,220 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2022-01-29 13:51:39,335 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits 2022-01-29 13:51:39,759 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). 2022-01-29 13:51:39,760 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:51:39,768 - stpipe.Coron3Pipeline.outlier_detection - INFO - Performing outlier detection with 5 inputs 2022-01-29 13:51:39,948 - stpipe.Coron3Pipeline.outlier_detection - INFO - Generating median from 5 images 2022-01-29 13:51:40,367 - stpipe.Coron3Pipeline.outlier_detection - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits 2022-01-29 13:51:40,367 - stpipe.Coron3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:51:40,501 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). 2022-01-29 13:51:40,502 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} 2022-01-29 13:51:40,510 - stpipe.Coron3Pipeline.align_refs - INFO - Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits 2022-01-29 13:51:40,591 - stpipe.Coron3Pipeline.align_refs - WARNING - Median filter returned NaN setting value to 0. 2022-01-29 13:52:17,038 - stpipe.Coron3Pipeline.align_refs - INFO - Step align_refs done 2022-01-29 13:52:17,258 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits 2022-01-29 13:52:17,406 - stpipe.Coron3Pipeline.klip - INFO - Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). 2022-01-29 13:52:17,407 - stpipe.Coron3Pipeline.klip - INFO - Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} 2022-01-29 13:52:17,415 - stpipe.Coron3Pipeline.klip - INFO - KL transform truncation = 50 2022-01-29 13:52:17,978 - stpipe.Coron3Pipeline.klip - INFO - Step klip done 2022-01-29 13:52:18,093 - stpipe.Coron3Pipeline - INFO - Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits 2022-01-29 13:52:18,442 - stpipe.Coron3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 13:52:18,443 - stpipe.Coron3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} 2022-01-29 13:52:18,464 - stpipe.Coron3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:52:18,633 - stpipe.Coron3Pipeline.resample - INFO - Resampling science data 2022-01-29 13:52:18,651 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,679 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,707 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,735 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,763 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,791 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,819 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,847 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,875 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,903 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,914 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:52:18,931 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,958 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:18,986 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,014 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,041 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,070 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,097 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,125 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,153 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,180 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,193 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:52:19,209 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,237 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,264 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,292 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,320 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,348 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,375 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,403 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,431 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,459 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,471 - stpipe.Coron3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:52:19,487 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,515 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,543 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,571 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,599 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,627 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,654 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,682 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,710 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,737 - stpipe.Coron3Pipeline.resample - INFO - Drizzling (158, 158) --> (158, 158) 2022-01-29 13:52:19,769 - stpipe.Coron3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 2022-01-29 13:52:19,774 - stpipe.Coron3Pipeline.resample - INFO - Step resample done 2022-01-29 13:52:20,936 - stpipe.Coron3Pipeline - INFO - Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits 2022-01-29 13:52:20,936 - stpipe.Coron3Pipeline - INFO - ...ending calwebb_coron3 2022-01-29 13:52:20,936 - stpipe.Coron3Pipeline - INFO - Step Coron3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jwst_nircam_psfmask_somb.fits HTTP/1.1" 200 313920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw99999-a3001_20170327t121212_coron3_001_asn.json HTTP/1.1" 200 1269 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00003_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00005_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00004_nrcb3_calints.fits HTTP/1.1" 200 9950400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00001_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/coron/jw9999947001_02102_00002_nrcb3_calints.fits HTTP/1.1" 200 3072960 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-CORON3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-CORON3PIPELINE reference files found. INFO stpipe.Coron3Pipeline:step.py:330 Coron3Pipeline instance created. INFO stpipe.Coron3Pipeline.stack_refs:step.py:330 StackRefsStep instance created. INFO stpipe.Coron3Pipeline.align_refs:step.py:330 AlignRefsStep instance created. INFO stpipe.Coron3Pipeline.klip:step.py:330 KlipStep instance created. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Coron3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Coron3Pipeline:step.py:390 Step Coron3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw99999-a3001_20170327t121212_coron3_001_asn.json',). INFO stpipe.Coron3Pipeline:step.py:394 Step Coron3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'steps': {'stack_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'}, 'align_refs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'}, 'klip': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} INFO stpipe.Coron3Pipeline:calwebb_coron3.py:51 Starting calwebb_coron3 ... DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00003_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00003_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00005_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00005_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00004_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00004_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00001_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw9999947001_02102_00002_nrcb3_calints.fits' reftypes = ['drizpars'] INFO stpipe.Coron3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Coron3Pipeline:pipeline.py:288 Override for PSFMASK reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits'. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Coron3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00003_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24958 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24958 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24854 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24854 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24938 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24938 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24935 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24935 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24908 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24908 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24954 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24898 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24898 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24947 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24947 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:947 Saved model in jw9999947001_02102_00003_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00005_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24870 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24870 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24957 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24957 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24859 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24859 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24844 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24844 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24910 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24910 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24848 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24848 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:947 Saved model in jw9999947001_02102_00005_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Coron3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<CubeModel(33, 158, 158) from jw9999947001_02102_00004_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 33 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 33 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24961 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24956 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24794 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24794 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24846 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24846 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24902 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24945 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24945 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24960 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24930 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24930 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24953 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24923 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24923 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24950 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24921 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24921 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24963 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24962 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24912 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24912 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24876 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24876 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24959 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24948 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24948 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24888 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24888 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:947 Saved model in jw9999947001_02102_00004_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Coron3Pipeline.stack_refs:step.py:390 Step stack_refs running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.stack_refs:step.py:394 Step stack_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0'} DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 1 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 2 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack INFO stpipe.Coron3Pipeline.stack_refs:stack_refs.py:44 Adding psf member 3 to output stack DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.stack_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.stack_refs:step.py:493 Step stack_refs done INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:947 Saved model in jw9999947001_02102_00001_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:390 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:394 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:36 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:493 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:390 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:394 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:493 Step klip done INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Coron3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_calints.fits>,). INFO stpipe.Coron3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'a3001_crfints', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:206 Performing outlier detection with 5 inputs DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:106 Converting CubeModel to ModelContainer with 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 0.0 INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images INFO stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 5 images DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 0 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 DEBUG stpipe.Coron3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 24964 INFO stpipe.Coron3Pipeline.outlier_detection:step.py:947 Saved model in jw9999947001_02102_00002_nrcb3_a3001_crfints.fits INFO stpipe.Coron3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Coron3Pipeline.align_refs:step.py:390 Step align_refs running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <CubeModel(99, 158, 158) from jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits>). INFO stpipe.Coron3Pipeline.align_refs:step.py:394 Step align_refs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'align_refs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'median_box_length': 3, 'bad_bits': 'DO_NOT_USE'} DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:align_refs_step.py:36 Using PSFMASK reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jwst_nircam_psfmask_somb.fits DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. WARNING stpipe.Coron3Pipeline.align_refs:median_replace_img.py:59 Median filter returned NaN setting value to 0. DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.align_refs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.align_refs:step.py:493 Step align_refs done INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits INFO stpipe.Coron3Pipeline.klip:step.py:390 Step klip running with args (<CubeModel(5, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_crfints.fits>, <QuadModel(5, 99, 158, 158) from jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits>). INFO stpipe.Coron3Pipeline.klip:step.py:394 Step klip parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'klip', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'truncate': 50} DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:klip_step.py:30 KL transform truncation = 50 DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.klip:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.klip:step.py:493 Step klip done INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Coron3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': False, 'allowed_memory': None} DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Coron3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Coron3Pipeline.resample:resample.py:71 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:71 Output mosaic size: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Coron3Pipeline.resample:util.py:411 Model size 97.5K available system memory 120.2G DEBUG stpipe.Coron3Pipeline.resample:util.py:411 Model size 97.5K available system memory 120.2G DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Coron3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Coron3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 157.5), (-0.5, 157.5)) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:388 Pixmap shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:389 Input Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) DEBUG stpipe.Coron3Pipeline.resample:resample.py:390 Output Sci shape: (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:resample.py:392 Drizzling (158, 158) --> (158, 158) INFO stpipe.Coron3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 6.135922993 13.270358704 6.135909525 13.271722408 6.134508400 13.271709296 6.134521876 13.270345591 INFO stpipe.Coron3Pipeline.resample:step.py:493 Step resample done DEBUG stpipe.Coron3Pipeline:calwebb_coron3.py:167 Blending metadata for <ImageModel(158, 158)> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00001_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_coron3_run_pipeline0/jw9999947001_02102_00002_nrcb3_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Coron3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Coron3Pipeline:step.py:947 Saved model in jw99999-a3001_t1_nircam_f140m-maskbar_i2d.fits INFO stpipe.Coron3Pipeline:calwebb_coron3.py:180 ...ending calwebb_coron3 INFO stpipe.Coron3Pipeline:step.py:493 Step Coron3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-psfsub] | 0.38 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00001-crfints] | 0.49 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00001_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfalign] | 3.45 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfalign.fits HTTP/1.1" 200 148334400 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-psfsub] | 0.40 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_psfsub.fits HTTP/1.1" 200 3075840 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_sci_exp[00002-crfints] | 0.43 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00002_nrcb3_a3001_crfints.fits HTTP/1.1" 200 5071680 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00003-crfints] | 0.59 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00003_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00004-crfints] | 0.61 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00004_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_psf_exp[00005-crfints] | 0.69 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw9999947001_02102_00005_nrcb3_a3001_crfints.fits HTTP/1.1" 200 9953280 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_coron3.py::test_nircam_coron3_product[psfstack] | 1.01 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_coron3/jw99999-a3001_t1_nircam_f140m-maskbar_psfstack.fits HTTP/1.1" 200 29707200 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[dq_init] | 124.21 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 13:52:34,265 - stpipe - INFO - PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf 2022-01-29 13:52:34,284 - stpipe.Detector1Pipeline - INFO - Detector1Pipeline instance created. 2022-01-29 13:52:34,285 - stpipe.Detector1Pipeline.group_scale - INFO - GroupScaleStep instance created. 2022-01-29 13:52:34,285 - stpipe.Detector1Pipeline.dq_init - INFO - DQInitStep instance created. 2022-01-29 13:52:34,286 - stpipe.Detector1Pipeline.saturation - INFO - SaturationStep instance created. 2022-01-29 13:52:34,287 - stpipe.Detector1Pipeline.ipc - INFO - IPCStep instance created. 2022-01-29 13:52:34,287 - stpipe.Detector1Pipeline.superbias - INFO - SuperBiasStep instance created. 2022-01-29 13:52:34,288 - stpipe.Detector1Pipeline.refpix - INFO - RefPixStep instance created. 2022-01-29 13:52:34,289 - stpipe.Detector1Pipeline.rscd - INFO - RscdStep instance created. 2022-01-29 13:52:34,289 - stpipe.Detector1Pipeline.firstframe - INFO - FirstFrameStep instance created. 2022-01-29 13:52:34,290 - stpipe.Detector1Pipeline.lastframe - INFO - LastFrameStep instance created. 2022-01-29 13:52:34,291 - stpipe.Detector1Pipeline.linearity - INFO - LinearityStep instance created. 2022-01-29 13:52:34,291 - stpipe.Detector1Pipeline.dark_current - INFO - DarkCurrentStep instance created. 2022-01-29 13:52:34,292 - stpipe.Detector1Pipeline.reset - INFO - ResetStep instance created. 2022-01-29 13:52:34,293 - stpipe.Detector1Pipeline.persistence - INFO - PersistenceStep instance created. 2022-01-29 13:52:34,294 - stpipe.Detector1Pipeline.jump - INFO - JumpStep instance created. 2022-01-29 13:52:34,298 - stpipe.Detector1Pipeline.ramp_fit - INFO - RampFitStep instance created. 2022-01-29 13:52:34,298 - stpipe.Detector1Pipeline.gain_scale - INFO - GainScaleStep instance created. 2022-01-29 13:52:34,299 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:52:34,299 - stpipe - INFO - OS: Linux 2022-01-29 13:52:34,576 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). 2022-01-29 13:52:34,585 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} 2022-01-29 13:52:34,770 - stpipe.Detector1Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] 2022-01-29 13:52:34,792 - stpipe.Detector1Pipeline - INFO - Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. 2022-01-29 13:52:34,793 - stpipe.Detector1Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2022-01-29 13:52:34,795 - stpipe.Detector1Pipeline - INFO - Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. 2022-01-29 13:52:34,797 - stpipe.Detector1Pipeline - INFO - Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0052.fits'. 2022-01-29 13:52:34,799 - stpipe.Detector1Pipeline - INFO - Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0021.fits'. 2022-01-29 13:52:34,801 - stpipe.Detector1Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2022-01-29 13:52:34,802 - stpipe.Detector1Pipeline - INFO - Prefetch for REFPIX reference file is 'N/A'. 2022-01-29 13:52:34,802 - stpipe.Detector1Pipeline - INFO - Prefetch for RESET reference file is 'N/A'. 2022-01-29 13:52:34,802 - stpipe.Detector1Pipeline - INFO - Prefetch for RSCD reference file is 'N/A'. 2022-01-29 13:52:34,803 - stpipe.Detector1Pipeline - INFO - Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. 2022-01-29 13:52:34,804 - stpipe.Detector1Pipeline - INFO - Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. 2022-01-29 13:52:34,806 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. 2022-01-29 13:52:34,807 - stpipe.Detector1Pipeline - INFO - Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. 2022-01-29 13:52:34,809 - stpipe.Detector1Pipeline - INFO - Starting calwebb_detector1 ... 2022-01-29 13:52:35,353 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2022-01-29 13:52:35,354 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:35,486 - stpipe.Detector1Pipeline.group_scale - INFO - NFRAMES=1 is a power of 2; correction not needed 2022-01-29 13:52:35,487 - stpipe.Detector1Pipeline.group_scale - INFO - Step will be skipped 2022-01-29 13:52:35,489 - stpipe.Detector1Pipeline.group_scale - INFO - Step group_scale done 2022-01-29 13:52:35,767 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). 2022-01-29 13:52:35,768 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:35,792 - stpipe.Detector1Pipeline.dq_init - INFO - Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0052.fits 2022-01-29 13:52:38,083 - stpipe.Detector1Pipeline.dq_init - INFO - Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits 2022-01-29 13:52:38,084 - stpipe.Detector1Pipeline.dq_init - INFO - Step dq_init done 2022-01-29 13:52:38,244 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). 2022-01-29 13:52:38,245 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:38,266 - stpipe.Detector1Pipeline.saturation - INFO - Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits 2022-01-29 13:52:39,157 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:39,157 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:39,158 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:39,158 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:39,158 - stpipe.Detector1Pipeline.saturation - WARNING - Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:39,557 - stpipe.Detector1Pipeline.saturation - INFO - Detected 35212 saturated pixels 2022-01-29 13:52:39,582 - stpipe.Detector1Pipeline.saturation - INFO - Detected 0 A/D floor pixels 2022-01-29 13:52:40,620 - stpipe.Detector1Pipeline.saturation - INFO - Saved model in jw42424001001_01101_00001_nrca5_saturation.fits 2022-01-29 13:52:40,620 - stpipe.Detector1Pipeline.saturation - INFO - Step saturation done 2022-01-29 13:52:40,749 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2022-01-29 13:52:40,750 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:40,750 - stpipe.Detector1Pipeline.ipc - INFO - Step skipped. 2022-01-29 13:52:40,752 - stpipe.Detector1Pipeline.ipc - INFO - Step ipc done 2022-01-29 13:52:40,859 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). 2022-01-29 13:52:40,860 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:40,882 - stpipe.Detector1Pipeline.superbias - INFO - Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits 2022-01-29 13:52:42,469 - stpipe.Detector1Pipeline.superbias - WARNING - Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:44,059 - stpipe.Detector1Pipeline.superbias - INFO - Saved model in jw42424001001_01101_00001_nrca5_superbias.fits 2022-01-29 13:52:44,059 - stpipe.Detector1Pipeline.superbias - INFO - Step superbias done 2022-01-29 13:52:44,180 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). 2022-01-29 13:52:44,181 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} 2022-01-29 13:52:44,190 - stpipe.Detector1Pipeline.refpix - INFO - use_side_ref_pixels = True 2022-01-29 13:52:44,190 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_columns = True 2022-01-29 13:52:44,190 - stpipe.Detector1Pipeline.refpix - INFO - side_smoothing_length = 11 2022-01-29 13:52:44,190 - stpipe.Detector1Pipeline.refpix - INFO - side_gain = 1.000000 2022-01-29 13:52:44,190 - stpipe.Detector1Pipeline.refpix - INFO - odd_even_rows = True 2022-01-29 13:52:47,635 - stpipe.Detector1Pipeline.refpix - INFO - Saved model in jw42424001001_01101_00001_nrca5_refpix.fits 2022-01-29 13:52:47,635 - stpipe.Detector1Pipeline.refpix - INFO - Step refpix done 2022-01-29 13:52:47,775 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). 2022-01-29 13:52:47,776 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:52:47,798 - stpipe.Detector1Pipeline.linearity - INFO - Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits 2022-01-29 13:52:50,663 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,663 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,663 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,663 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,664 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,664 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:50,664 - stpipe.Detector1Pipeline.linearity - WARNING - Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:52,522 - stpipe.Detector1Pipeline.linearity - INFO - Saved model in jw42424001001_01101_00001_nrca5_linearity.fits 2022-01-29 13:52:52,523 - stpipe.Detector1Pipeline.linearity - INFO - Step linearity done 2022-01-29 13:52:52,663 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2022-01-29 13:52:52,664 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} 2022-01-29 13:52:54,642 - stpipe.Detector1Pipeline.persistence - WARNING - Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:52:57,923 - stpipe.Detector1Pipeline.persistence - INFO - Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits 2022-01-29 13:52:57,927 - stpipe.Detector1Pipeline.persistence - INFO - Step persistence done 2022-01-29 13:52:58,060 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). 2022-01-29 13:52:58,061 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} 2022-01-29 13:52:58,083 - stpipe.Detector1Pipeline.dark_current - INFO - Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits 2022-01-29 13:53:27,651 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:53:27,651 - stpipe.Detector1Pipeline.dark_current - WARNING - Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored 2022-01-29 13:53:27,655 - stpipe.Detector1Pipeline.dark_current - INFO - Science data nints=1, ngroups=7, nframes=1, groupgap=1 2022-01-29 13:53:27,656 - stpipe.Detector1Pipeline.dark_current - INFO - Dark data nints=1, ngroups=108, nframes=1, groupgap=0 2022-01-29 13:53:29,759 - stpipe.Detector1Pipeline.dark_current - INFO - Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits 2022-01-29 13:53:29,760 - stpipe.Detector1Pipeline.dark_current - INFO - Step dark_current done 2022-01-29 13:53:30,150 - stpipe.Detector1Pipeline.jump - INFO - Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). 2022-01-29 13:53:30,151 - stpipe.Detector1Pipeline.jump - INFO - Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} 2022-01-29 13:53:30,160 - stpipe.Detector1Pipeline.jump - INFO - CR rejection threshold = 50 sigma 2022-01-29 13:53:30,179 - stpipe.Detector1Pipeline.jump - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2022-01-29 13:53:30,349 - stpipe.Detector1Pipeline.jump - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2022-01-29 13:53:30,383 - stpipe.Detector1Pipeline.jump - INFO - Using 1 core for jump detection 2022-01-29 13:53:30,717 - stpipe.Detector1Pipeline.jump - INFO - Executing two-point difference method 2022-01-29 13:53:30,951 - stpipe.Detector1Pipeline.jump - INFO - Working on integration 1: 2022-01-29 13:53:33,253 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups 2022-01-29 13:53:33,253 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 3 pixels with at least one CR and three groups 2022-01-29 13:53:33,253 - stpipe.Detector1Pipeline.jump - INFO - From highest outlier Two-point found 2872 pixels with at least one CR and two groups 2022-01-29 13:53:33,645 - stpipe.Detector1Pipeline.jump - INFO - Total elapsed time = 2.92775 sec 2022-01-29 13:53:33,650 - stpipe.Detector1Pipeline.jump - INFO - The execution time in seconds: 3.489110 2022-01-29 13:53:35,913 - stpipe.Detector1Pipeline.jump - INFO - Saved model in jw42424001001_01101_00001_nrca5_jump.fits 2022-01-29 13:53:35,913 - stpipe.Detector1Pipeline.jump - INFO - Step jump done 2022-01-29 13:53:36,066 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2022-01-29 13:53:36,066 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} 2022-01-29 13:53:36,101 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits 2022-01-29 13:53:36,131 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits 2022-01-29 13:53:36,172 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using algorithm = ols 2022-01-29 13:53:36,172 - stpipe.Detector1Pipeline.ramp_fit - INFO - Using weighting = optimal 2022-01-29 13:54:05,728 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of groups per integration: 7 2022-01-29 13:54:05,729 - stpipe.Detector1Pipeline.ramp_fit - INFO - Number of integrations: 1 2022-01-29 13:54:05,939 - stpipe.Detector1Pipeline.ramp_fit - INFO - Step ramp_fit done 2022-01-29 13:54:06,080 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2022-01-29 13:54:06,081 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:54:06,143 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 13:54:06,143 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 13:54:06,147 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 13:54:06,247 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). 2022-01-29 13:54:06,248 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} 2022-01-29 13:54:06,309 - stpipe.Detector1Pipeline.gain_scale - INFO - GAINFACT not found in gain reference file 2022-01-29 13:54:06,309 - stpipe.Detector1Pipeline.gain_scale - INFO - Step will be skipped 2022-01-29 13:54:06,313 - stpipe.Detector1Pipeline.gain_scale - INFO - Step gain_scale done 2022-01-29 13:54:06,455 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rateints.fits 2022-01-29 13:54:06,456 - stpipe.Detector1Pipeline - INFO - ... ending calwebb_detector1 2022-01-29 13:54:06,766 - stpipe.Detector1Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_rate.fits 2022-01-29 13:54:06,766 - stpipe.Detector1Pipeline - INFO - Step Detector1Pipeline done 2022-01-29 13:54:06,853 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:54:06,853 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:54:06,854 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:54:06,855 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:54:06,856 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:54:06,858 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:54:06,858 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:54:06,858 - stpipe - INFO - OS: Linux 2022-01-29 13:54:06,974 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). 2022-01-29 13:54:06,977 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:54:07,007 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:54:07,020 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2022-01-29 13:54:07,021 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:54:07,021 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:54:07,021 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:54:07,022 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:54:07,022 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2022-01-29 13:54:07,023 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:54:07,025 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:54:07,025 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2022-01-29 13:54:07,027 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2022-01-29 13:54:07,028 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:54:07,028 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:54:07,028 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:54:07,028 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:54:07,029 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:54:07,029 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:54:07,029 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:54:07,029 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2022-01-29 13:54:07,030 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:54:07,030 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:54:07,030 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:54:07,031 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:54:07,031 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:54:07,031 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:54:07,031 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2022-01-29 13:54:07,032 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... 2022-01-29 13:54:07,168 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). 2022-01-29 13:54:07,169 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:54:07,506 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2022-01-29 13:54:07,506 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 2022-01-29 13:54:07,506 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:54:07,841 - stpipe.Image2Pipeline.assign_wcs - INFO - Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits 2022-01-29 13:54:07,841 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:54:07,961 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). 2022-01-29 13:54:07,961 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:54:08,689 - stpipe.Image2Pipeline.flat_field - INFO - Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits 2022-01-29 13:54:08,689 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:54:08,803 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2022-01-29 13:54:08,804 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:54:08,828 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2022-01-29 13:54:08,828 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2022-01-29 13:54:08,919 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:54:08,919 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2022-01-29 13:54:08,919 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:54:08,919 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:54:08,919 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:54:08,986 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:54:08,988 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2022-01-29 13:54:09,023 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:54:09,133 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). 2022-01-29 13:54:09,134 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:54:09,159 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:54:09,282 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:54:12,262 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:54:14,178 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:54:17,576 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:54:19,552 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:54:22,791 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:54:24,678 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:54:27,340 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:54:29,255 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 2022-01-29 13:54:29,651 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrca5_i2d.fits 2022-01-29 13:54:29,651 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:54:29,651 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 2022-01-29 13:54:29,654 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:54:30,099 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrca5_cal.fits 2022-01-29 13:54:30,099 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrca5_uncal.fits HTTP/1.1" 200 67147200 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-DETECTOR1PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-DETECTOR1PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-detector1pipeline_0002.asdf INFO stpipe.Detector1Pipeline:step.py:330 Detector1Pipeline instance created. INFO stpipe.Detector1Pipeline.group_scale:step.py:330 GroupScaleStep instance created. INFO stpipe.Detector1Pipeline.dq_init:step.py:330 DQInitStep instance created. INFO stpipe.Detector1Pipeline.saturation:step.py:330 SaturationStep instance created. INFO stpipe.Detector1Pipeline.ipc:step.py:330 IPCStep instance created. INFO stpipe.Detector1Pipeline.superbias:step.py:330 SuperBiasStep instance created. INFO stpipe.Detector1Pipeline.refpix:step.py:330 RefPixStep instance created. INFO stpipe.Detector1Pipeline.rscd:step.py:330 RscdStep instance created. INFO stpipe.Detector1Pipeline.firstframe:step.py:330 FirstFrameStep instance created. INFO stpipe.Detector1Pipeline.lastframe:step.py:330 LastFrameStep instance created. INFO stpipe.Detector1Pipeline.linearity:step.py:330 LinearityStep instance created. INFO stpipe.Detector1Pipeline.dark_current:step.py:330 DarkCurrentStep instance created. INFO stpipe.Detector1Pipeline.reset:step.py:330 ResetStep instance created. INFO stpipe.Detector1Pipeline.persistence:step.py:330 PersistenceStep instance created. INFO stpipe.Detector1Pipeline.jump:step.py:330 JumpStep instance created. INFO stpipe.Detector1Pipeline.ramp_fit:step.py:330 RampFitStep instance created. INFO stpipe.Detector1Pipeline.gain_scale:step.py:330 GainScaleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Detector1Pipeline:step.py:390 Step Detector1Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits',). INFO stpipe.Detector1Pipeline:step.py:394 Step Detector1Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_calibrated_ramp': False, 'steps': {'group_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dq_init': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'saturation': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'ipc': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'superbias': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'refpix': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True}, 'rscd': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'type': 'baseline'}, 'firstframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'lastframe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'linearity': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'dark_current': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None}, 'reset': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'persistence': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True}, 'jump': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0}, 'ramp_fit': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'}, 'gain_scale': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}}} DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_uncal.fits' reftypes = ['dark', 'gain', 'linearity', 'mask', 'persat', 'readnoise', 'refpix', 'reset', 'rscd', 'saturation', 'superbias', 'trapdensity', 'trappars'] INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for DARK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for LINEARITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for MASK reference file is '/grp/crds/cache/references/jwst/jwst_nircam_mask_0052.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for PERSAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_persat_0021.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for REFPIX reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RESET reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for RSCD reference file is 'N/A'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SATURATION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for SUPERBIAS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPDENSITY reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trapdensity_0004.fits'. INFO stpipe.Detector1Pipeline:pipeline.py:288 Prefetch for TRAPPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_trappars_0002.fits'. INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... INFO stpipe.Detector1Pipeline:calwebb_detector1.py:68 Starting calwebb_detector1 ... DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:fits_support.py:701 Input model type Level1bModel does not match the requested model <class 'jwst.datamodels.ramp.RampModel'>. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure DEBUG stpipe.Detector1Pipeline:calwebb_detector1.py:101 Processing a Near-IR exposure INFO stpipe.Detector1Pipeline.group_scale:step.py:390 Step group_scale running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.group_scale:step.py:394 Step group_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.group_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:41 NFRAMES=1 is a power of 2; correction not needed INFO stpipe.Detector1Pipeline.group_scale:group_scale_step.py:42 Step will be skipped INFO stpipe.Detector1Pipeline.group_scale:step.py:493 Step group_scale done INFO stpipe.Detector1Pipeline.dq_init:step.py:390 Step dq_init running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_uncal.fits>,). INFO stpipe.Detector1Pipeline.dq_init:step.py:394 Step dq_init parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dq_init:dq_init_step.py:63 Using MASK reference file /grp/crds/cache/references/jwst/jwst_nircam_mask_0052.fits DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.dq_init:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.dq_init:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_dq_init.fits INFO stpipe.Detector1Pipeline.dq_init:step.py:493 Step dq_init done INFO stpipe.Detector1Pipeline.saturation:step.py:390 Step saturation running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dq_init.fits>,). INFO stpipe.Detector1Pipeline.saturation:step.py:394 Step saturation parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.saturation:saturation_step.py:25 Using SATURATION reference file /grp/crds/cache/references/jwst/jwst_nircam_saturation_0063.fits DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.saturation:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword NO_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword FEW_SAMPLES does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword AD_SATURATION does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword WEIRD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.saturation:dynamicdq.py:42 Keyword DEAD_PIXEL does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.saturation:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:115 Detected 35212 saturated pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:saturation.py:117 Detected 0 A/D floor pixels INFO stpipe.Detector1Pipeline.saturation:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_saturation.fits INFO stpipe.Detector1Pipeline.saturation:step.py:493 Step saturation done INFO stpipe.Detector1Pipeline.ipc:step.py:390 Step ipc running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.ipc:step.py:394 Step ipc parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} INFO stpipe.Detector1Pipeline.ipc:step.py:424 Step skipped. INFO stpipe.Detector1Pipeline.ipc:step.py:493 Step ipc done INFO stpipe.Detector1Pipeline.superbias:step.py:390 Step superbias running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_saturation.fits>,). INFO stpipe.Detector1Pipeline.superbias:step.py:394 Step superbias parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:superbias_step.py:27 Using SUPERBIAS reference file /grp/crds/cache/references/jwst/jwst_nircam_superbias_0022.fits DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.superbias:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.superbias:dynamicdq.py:42 Keyword NOISY does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.superbias:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.superbias:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_superbias.fits INFO stpipe.Detector1Pipeline.superbias:step.py:493 Step superbias done INFO stpipe.Detector1Pipeline.refpix:step.py:390 Step refpix running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_superbias.fits>,). INFO stpipe.Detector1Pipeline.refpix:step.py:394 Step refpix parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'odd_even_columns': True, 'use_side_ref_pixels': True, 'side_smoothing_length': 11, 'side_gain': 1.0, 'odd_even_rows': True} DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:56 use_side_ref_pixels = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:58 odd_even_columns = True INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:60 side_smoothing_length = 11 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:62 side_gain = 1.000000 INFO stpipe.Detector1Pipeline.refpix:refpix_step.py:63 odd_even_rows = True DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.refpix:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.refpix:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_refpix.fits INFO stpipe.Detector1Pipeline.refpix:step.py:493 Step refpix done INFO stpipe.Detector1Pipeline.linearity:step.py:390 Step linearity running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_refpix.fits>,). INFO stpipe.Detector1Pipeline.linearity:step.py:394 Step linearity parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.linearity:linearity_step.py:23 Using Linearity reference file /grp/crds/cache/references/jwst/jwst_nircam_linearity_0052.fits DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.linearity:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_DO_NOT_USE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_LIN_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_BAD_LIN_FIT does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_NO_WELL_SAMP does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MODEL_FIT_FAIL does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_WELL_NOT_DEFINED does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.linearity:dynamicdq.py:42 Keyword UAZ_MASTER_MASK does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:214 Pixels were flagged in the DQ of the reference file as NO_LIN_CORR ('Linearity correction not available'); for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. DEBUG stpipe.Detector1Pipeline.linearity:linearity.py:169 Unflagged pixels having coefficients set to NaN were detected in the ref file; for those affected pixels no linearity correction will be applied. INFO stpipe.Detector1Pipeline.linearity:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_linearity.fits INFO stpipe.Detector1Pipeline.linearity:step.py:493 Step linearity done INFO stpipe.Detector1Pipeline.persistence:step.py:390 Step persistence running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.persistence:step.py:394 Step persistence parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'input_trapsfilled': '', 'flag_pers_cutoff': 40.0, 'save_persistence': False, 'save_trapsfilled': True} DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.persistence:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.persistence:dynamicdq.py:42 Keyword WEIRD does not correspond to an existing DQ mnemonic, so will be ignored DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:154 input_traps_filled = None DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:155 flag_pers_cutoff = 40 DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:156 save_persistence = False DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:227 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:persistence.py:227 The input is not a subarray. DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.persistence:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.persistence:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_trapsfilled.fits INFO stpipe.Detector1Pipeline.persistence:step.py:493 Step persistence done INFO stpipe.Detector1Pipeline.dark_current:step.py:390 Step dark_current running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_linearity.fits>,). INFO stpipe.Detector1Pipeline.dark_current:step.py:394 Step dark_current parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'dark_output': None} DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:dark_current_step.py:28 Using DARK reference file /grp/crds/cache/references/jwst/jwst_nircam_dark_0043.fits DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.dark_current:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword HIGH_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored WARNING stpipe.Detector1Pipeline.dark_current:dynamicdq.py:42 Keyword UNSTABLE_NOISE does not correspond to an existing DQ mnemonic, so will be ignored INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:53 Science data nints=1, ngroups=7, nframes=1, groupgap=1 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 INFO stpipe.Detector1Pipeline.dark_current:dark_sub.py:57 Dark data nints=1, ngroups=108, nframes=1, groupgap=0 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 0 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 2 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 4 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 6 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 8 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 10 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:180 copy dark frame 12 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:dark_sub.py:314 subtract_dark: nints=1, ngroups=7, size=2048,2048 DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.dark_current:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.dark_current:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_dark_current.fits INFO stpipe.Detector1Pipeline.dark_current:step.py:493 Step dark_current done INFO stpipe.Detector1Pipeline.jump:step.py:390 Step jump running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_dark_current.fits>,). INFO stpipe.Detector1Pipeline.jump:step.py:394 Step jump parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'rejection_threshold': 50.0, 'three_group_rejection_threshold': 6.0, 'four_group_rejection_threshold': 5.0, 'maximum_cores': 'none', 'flag_4_neighbors': True, 'max_jump_to_flag_neighbors': 1000.0, 'min_jump_to_flag_neighbors': 10.0} DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:51 CR rejection threshold = 50 sigma DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:57 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.jump:jump_step.py:63 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.jump:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection INFO stpipe.Detector1Pipeline.jump:jump.py:37 Using 1 core for jump detection DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.jump:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:jump.py:90 Executing two-point difference method INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:61 Working on integration 1: DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 32704 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:99 Twopt found 32704 pixels with sigma=0 DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected DEBUG stpipe.Detector1Pipeline.jump:twopoint_difference.py:100 which will be reset so that no jump will be detected INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:132 From highest outlier Two-point found 4709 pixels with at least one CR and at least four groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 3 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:134 From highest outlier Two-point found 3 pixels with at least one CR and three groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2872 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:twopoint_difference.py:136 From highest outlier Two-point found 2872 pixels with at least one CR and two groups INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 2.92775 sec INFO stpipe.Detector1Pipeline.jump:jump.py:155 Total elapsed time = 2.92775 sec INFO stpipe.Detector1Pipeline.jump:jump_step.py:75 The execution time in seconds: 3.489110 INFO stpipe.Detector1Pipeline.jump:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_jump.fits INFO stpipe.Detector1Pipeline.jump:step.py:493 Step jump done INFO stpipe.Detector1Pipeline.ramp_fit:step.py:390 Step ramp_fit running with args (<RampModel(1, 7, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.ramp_fit:step.py:394 Step ramp_fit parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'int_name': '', 'save_opt': False, 'opt_name': '', 'maximum_cores': 'none'} DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:50 Using READNOISE reference file: /grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Detector1Pipeline.ramp_fit:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:52 Using GAIN reference file: /grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:63 Using algorithm = ols INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal INFO stpipe.Detector1Pipeline.ramp_fit:ramp_fit_step.py:64 Using weighting = optimal DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=6 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:119 Max segments=6 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1310 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1310 Missing keyword DRPFRMS1, so setting to default value of 0 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1391 The number of pixels having insufficient data DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1392 due to excessive CRs or saturation 35122: DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -169.330429, 0.389915, 1648.302368, 3.281085 DEBUG stpipe.Detector1Pipeline.ramp_fit:utils.py:1393 Count rates - min, mean, max, std: -169.330429, 0.389915, 1648.302368, 3.281085 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1445 Instrument: NIRCAM DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1446 Number of pixels in 2D array: 4194304 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1447 Shape of 2D image: (2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1448 Shape of data cube: (7, 2048, 2048) DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1449 Buffer size (bytes): 307200000 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 2048 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1450 Number of rows per buffer: 2048 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1451 Number of groups per integration: 7 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 INFO stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1452 Number of integrations: 1 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 29.453151 DEBUG stpipe.Detector1Pipeline.ramp_fit:ols_fit.py:1453 The execution time in seconds: 29.453151 DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.ramp_fit:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Detector1Pipeline.ramp_fit:step.py:493 Step ramp_fit done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scale', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline.gain_scale:step.py:390 Step gain_scale running with args (<CubeModel(1, 2048, 2048) from jw42424001001_01101_00001_nrca5_jump.fits>,). INFO stpipe.Detector1Pipeline.gain_scale:step.py:394 Step gain_scale parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'gain_scaleints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'} DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Detector1Pipeline.gain_scale:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:32 GAINFACT not found in gain reference file INFO stpipe.Detector1Pipeline.gain_scale:gain_scale_step.py:33 Step will be skipped INFO stpipe.Detector1Pipeline.gain_scale:step.py:493 Step gain_scale done INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_rateints.fits INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:calwebb_detector1.py:152 ... ending calwebb_detector1 INFO stpipe.Detector1Pipeline:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_rate.fits INFO stpipe.Detector1Pipeline:step.py:493 Step Detector1Pipeline done DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image2Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.042056974 11.980843387 22.041583444 12.016714026 22.005379212 12.016751109 22.004987553 11.980610139 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_assign_wcs.fits INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_assign_wcs.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_flat_field.fits INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrca5_flat_field.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.3G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.042067883 11.980672339 22.042026029 12.016803324 22.004960458 12.016759805 22.005007279 11.980628826 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_dq_init.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[saturation] | 4.88 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_saturation.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[superbias] | 4.32 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_superbias.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[refpix] | 5.11 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_refpix.fits HTTP/1.1" 200 297852480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stages12[trapsfilled] | 1.16 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_trapsfilled.fits HTTP/1.1" 200 50353920 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage2_wcs | 7.83 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_image_stages/jw42424001001_01101_00001_nrca5_assign_wcs.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/truth/jw42424001001_01101_00001_nrca5_assign_wcs.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_image.py::test_nircam_image_stage3_tweakreg | 391.35 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 13:55:25,296 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:55:25,297 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:55:25,298 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:55:25,299 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:55:25,300 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:55:25,302 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:55:25,302 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:55:25,302 - stpipe - INFO - OS: Linux 2022-01-29 13:55:25,474 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). 2022-01-29 13:55:25,478 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:55:25,641 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:55:25,660 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2022-01-29 13:55:25,662 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:55:25,662 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:55:25,662 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:55:25,662 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:55:25,663 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2022-01-29 13:55:25,664 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:55:25,666 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:55:25,666 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2022-01-29 13:55:25,669 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2022-01-29 13:55:25,671 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:55:25,671 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:55:25,671 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:55:25,671 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:55:25,671 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:55:25,672 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:55:25,672 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:55:25,672 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2022-01-29 13:55:25,674 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:55:25,674 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:55:25,674 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:55:25,674 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:55:25,674 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:55:25,675 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:55:25,675 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2022-01-29 13:55:25,675 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... 2022-01-29 13:55:25,950 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2022-01-29 13:55:25,951 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:55:26,217 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2022-01-29 13:55:26,217 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 2022-01-29 13:55:26,217 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:55:26,278 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:55:26,386 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2022-01-29 13:55:26,387 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:55:26,775 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:55:26,882 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2022-01-29 13:55:26,883 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:55:26,908 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2022-01-29 13:55:26,908 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2022-01-29 13:55:27,000 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:55:27,000 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2022-01-29 13:55:27,000 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:55:27,000 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:55:27,000 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:55:27,067 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:55:27,069 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2022-01-29 13:55:27,104 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:55:27,213 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). 2022-01-29 13:55:27,214 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:55:27,240 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:55:27,364 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:55:30,495 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:55:32,373 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:55:35,412 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:55:37,302 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:55:40,346 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:55:42,248 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:55:45,125 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:55:47,090 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 2022-01-29 13:55:47,464 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits 2022-01-29 13:55:47,464 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:55:47,465 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 2022-01-29 13:55:47,468 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:55:47,954 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00001_nrcb5_cal.fits 2022-01-29 13:55:47,954 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 13:55:48,870 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:55:48,871 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:55:48,872 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:55:48,873 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:55:48,874 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:55:48,875 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:55:48,875 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:55:48,875 - stpipe - INFO - OS: Linux 2022-01-29 13:55:49,010 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). 2022-01-29 13:55:49,014 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:55:49,179 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:55:49,188 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2022-01-29 13:55:49,190 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:55:49,190 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:55:49,190 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:55:49,190 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:55:49,190 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2022-01-29 13:55:49,192 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:55:49,194 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:55:49,194 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2022-01-29 13:55:49,195 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2022-01-29 13:55:49,197 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:55:49,197 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:55:49,197 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:55:49,197 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:55:49,198 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:55:49,198 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:55:49,198 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:55:49,198 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:55:49,200 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:55:49,201 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2022-01-29 13:55:49,201 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... 2022-01-29 13:55:49,476 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2022-01-29 13:55:49,477 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:55:49,745 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2022-01-29 13:55:49,745 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 2022-01-29 13:55:49,745 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:55:49,805 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:55:49,912 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2022-01-29 13:55:49,913 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:55:50,288 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:55:50,395 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2022-01-29 13:55:50,396 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:55:50,422 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2022-01-29 13:55:50,422 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2022-01-29 13:55:50,514 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:55:50,514 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2022-01-29 13:55:50,514 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:55:50,514 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:55:50,514 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:55:50,580 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:55:50,581 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2022-01-29 13:55:50,617 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:55:50,722 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). 2022-01-29 13:55:50,723 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:55:50,748 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:55:50,873 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:55:53,960 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:55:55,838 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:55:58,868 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:00,760 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:56:03,853 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:05,737 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:56:08,833 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:10,749 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 2022-01-29 13:56:11,081 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrca5_i2d.fits 2022-01-29 13:56:11,081 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:56:11,081 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 2022-01-29 13:56:11,084 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:56:13,221 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrca5_cal.fits 2022-01-29 13:56:13,221 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 13:56:14,247 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:56:14,248 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:56:14,249 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:56:14,250 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:56:14,250 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:56:14,252 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:56:14,252 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:56:14,252 - stpipe - INFO - OS: Linux 2022-01-29 13:56:14,531 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). 2022-01-29 13:56:14,535 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:56:14,713 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:56:14,719 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2022-01-29 13:56:14,722 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:56:14,722 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:56:14,722 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:56:14,722 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:56:14,722 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2022-01-29 13:56:14,723 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:56:14,724 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:56:14,724 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2022-01-29 13:56:14,724 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:56:14,726 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2022-01-29 13:56:14,727 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:56:14,727 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:56:14,727 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:56:14,727 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:56:14,727 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:56:14,728 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:56:14,728 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2022-01-29 13:56:14,728 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... 2022-01-29 13:56:15,169 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2022-01-29 13:56:15,170 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:56:15,533 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2022-01-29 13:56:15,533 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 2022-01-29 13:56:15,533 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:56:15,601 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:56:15,875 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2022-01-29 13:56:15,876 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:56:16,387 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:56:16,652 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2022-01-29 13:56:16,653 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:56:16,682 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2022-01-29 13:56:16,682 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2022-01-29 13:56:16,801 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:56:16,801 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2022-01-29 13:56:16,801 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:56:16,801 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:56:16,801 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:56:16,870 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:56:16,872 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2022-01-29 13:56:16,911 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:56:17,174 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). 2022-01-29 13:56:17,175 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:56:17,204 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:56:17,349 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:56:20,399 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:56:22,323 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:56:25,400 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:56:27,307 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:56:30,354 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:56:32,277 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:56:35,287 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:56:37,280 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 2022-01-29 13:56:37,684 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits 2022-01-29 13:56:37,684 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:56:37,685 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 2022-01-29 13:56:37,690 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:56:38,148 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00002_nrcb5_cal.fits 2022-01-29 13:56:38,148 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 13:56:39,298 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:56:39,299 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:56:39,300 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:56:39,300 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:56:39,301 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:56:39,302 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:56:39,302 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:56:39,302 - stpipe - INFO - OS: Linux 2022-01-29 13:56:39,480 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). 2022-01-29 13:56:39,484 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:56:39,647 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:56:39,658 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. 2022-01-29 13:56:39,659 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:56:39,659 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:56:39,659 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:56:39,659 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:56:39,659 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2022-01-29 13:56:39,660 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:56:39,662 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:56:39,662 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2022-01-29 13:56:39,663 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. 2022-01-29 13:56:39,664 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:56:39,664 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:56:39,664 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:56:39,665 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:56:39,665 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:56:39,665 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:56:39,665 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:56:39,665 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. 2022-01-29 13:56:39,666 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:56:39,666 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:56:39,666 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:56:39,666 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:56:39,666 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:56:39,667 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:56:39,667 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2022-01-29 13:56:39,667 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... 2022-01-29 13:56:39,962 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2022-01-29 13:56:39,963 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:56:40,233 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2022-01-29 13:56:40,233 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 2022-01-29 13:56:40,233 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:56:40,294 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:56:40,419 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2022-01-29 13:56:40,420 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:56:40,829 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:56:40,956 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2022-01-29 13:56:40,957 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:56:40,983 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits 2022-01-29 13:56:40,983 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits 2022-01-29 13:56:41,093 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:56:41,094 - stpipe.Image2Pipeline.photom - INFO - detector: NRCALONG 2022-01-29 13:56:41,094 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:56:41,094 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:56:41,094 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:56:41,162 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:56:41,164 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.441577 2022-01-29 13:56:41,200 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:56:41,323 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). 2022-01-29 13:56:41,324 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:56:41,350 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:56:41,480 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:56:44,739 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:46,689 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:56:49,858 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:51,765 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:56:54,546 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:56:56,448 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:56:59,153 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2068, 2075) 2022-01-29 13:57:01,105 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 2022-01-29 13:57:01,512 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrca5_i2d.fits 2022-01-29 13:57:01,512 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:57:01,512 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 2022-01-29 13:57:01,516 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:57:01,991 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrca5_cal.fits 2022-01-29 13:57:01,992 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 13:57:03,137 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 13:57:03,138 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 13:57:03,139 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 13:57:03,140 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 13:57:03,141 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 13:57:03,142 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:57:03,142 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:57:03,142 - stpipe - INFO - OS: Linux 2022-01-29 13:57:03,304 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). 2022-01-29 13:57:03,308 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 13:57:03,490 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 13:57:03,494 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. 2022-01-29 13:57:03,498 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 13:57:03,498 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 13:57:03,498 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 13:57:03,498 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 13:57:03,498 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. 2022-01-29 13:57:03,500 - stpipe.Image2Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:57:03,501 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 13:57:03,501 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. 2022-01-29 13:57:03,502 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 13:57:03,503 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 13:57:03,504 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 13:57:03,504 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. 2022-01-29 13:57:03,505 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 13:57:03,505 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 13:57:03,505 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 13:57:03,505 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 13:57:03,505 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 13:57:03,506 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 13:57:03,506 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2022-01-29 13:57:03,506 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... 2022-01-29 13:57:03,894 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2022-01-29 13:57:03,895 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 13:57:04,179 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2022-01-29 13:57:04,179 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 2022-01-29 13:57:04,179 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 13:57:04,241 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 13:57:04,471 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2022-01-29 13:57:04,472 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 13:57:04,880 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 13:57:05,105 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2022-01-29 13:57:05,106 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} 2022-01-29 13:57:05,132 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits 2022-01-29 13:57:05,132 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits 2022-01-29 13:57:05,229 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 13:57:05,230 - stpipe.Image2Pipeline.photom - INFO - detector: NRCBLONG 2022-01-29 13:57:05,230 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 13:57:05,230 - stpipe.Image2Pipeline.photom - INFO - filter: F444W 2022-01-29 13:57:05,230 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 13:57:05,295 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 13:57:05,297 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 0.389988 2022-01-29 13:57:05,333 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 13:57:05,570 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). 2022-01-29 13:57:05,572 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:57:05,610 - stpipe.Image2Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:57:05,749 - stpipe.Image2Pipeline.resample - INFO - Resampling science data 2022-01-29 13:57:08,660 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:57:10,604 - stpipe.Image2Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 13:57:13,437 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:57:15,351 - stpipe.Image2Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 13:57:18,157 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:57:20,086 - stpipe.Image2Pipeline.resample - INFO - Resampling var_flat 2022-01-29 13:57:22,938 - stpipe.Image2Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2067, 2074) 2022-01-29 13:57:24,857 - stpipe.Image2Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 2022-01-29 13:57:25,207 - stpipe.Image2Pipeline.resample - INFO - Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits 2022-01-29 13:57:25,207 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 13:57:25,208 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 2022-01-29 13:57:25,211 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 13:57:25,694 - stpipe.Image2Pipeline - INFO - Saved model in jw42424001001_01101_00003_nrcb5_cal.fits 2022-01-29 13:57:25,694 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 13:57:26,137 - stpipe - INFO - PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf 2022-01-29 13:57:26,156 - stpipe - INFO - PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} 2022-01-29 13:57:26,790 - CRDS - ERROR - Error determining best reference for 'pars-sourcecatalogstep' = No match found. 2022-01-29 13:57:26,878 - stpipe.Image3Pipeline - INFO - Image3Pipeline instance created. 2022-01-29 13:57:26,879 - stpipe.Image3Pipeline.assign_mtwcs - INFO - AssignMTWcsStep instance created. 2022-01-29 13:57:26,880 - stpipe.Image3Pipeline.tweakreg - INFO - TweakRegStep instance created. 2022-01-29 13:57:26,882 - stpipe.Image3Pipeline.skymatch - INFO - SkyMatchStep instance created. 2022-01-29 13:57:26,883 - stpipe.Image3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 13:57:26,884 - stpipe.Image3Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 13:57:26,885 - stpipe.Image3Pipeline.source_catalog - INFO - SourceCatalogStep instance created. 2022-01-29 13:57:26,885 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 13:57:26,885 - stpipe - INFO - OS: Linux 2022-01-29 13:57:27,117 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). 2022-01-29 13:57:27,122 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} 2022-01-29 13:57:27,221 - stpipe.Image3Pipeline - INFO - Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] 2022-01-29 13:57:27,225 - stpipe.Image3Pipeline - INFO - Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. 2022-01-29 13:57:27,226 - stpipe.Image3Pipeline - INFO - Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. 2022-01-29 13:57:27,228 - stpipe.Image3Pipeline - INFO - Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. 2022-01-29 13:57:27,228 - stpipe.Image3Pipeline - INFO - Starting calwebb_image3 ... 2022-01-29 13:57:28,019 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg running with args (<ModelContainer>,). 2022-01-29 13:57:28,021 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} 2022-01-29 13:57:31,313 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. 2022-01-29 13:57:34,544 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. 2022-01-29 13:57:38,046 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. 2022-01-29 13:57:41,123 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. 2022-01-29 13:57:44,687 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. 2022-01-29 13:57:47,915 - stpipe.Image3Pipeline.tweakreg - INFO - Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. 2022-01-29 13:57:47,961 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:47,961 - stpipe.Image3Pipeline.tweakreg - INFO - Number of image groups to be aligned: 3. 2022-01-29 13:57:47,961 - stpipe.Image3Pipeline.tweakreg - INFO - Image groups: 2022-01-29 13:57:48,003 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00001_nrc': 2022-01-29 13:57:48,004 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrca5_cal 2022-01-29 13:57:48,004 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00001_nrcb5_cal 2022-01-29 13:57:48,047 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00002_nrc': 2022-01-29 13:57:48,047 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrca5_cal 2022-01-29 13:57:48,047 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00002_nrcb5_cal 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - * Images in GROUP 'jw42424001001_01101_00003_nrc': 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrca5_cal 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - jw42424001001_01101_00003_nrcb5_cal 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:57:48.088670 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - Version 0.7.3 2022-01-29 13:57:48,088 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,244 - stpipe.Image3Pipeline.tweakreg - INFO - Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image 2022-01-29 13:57:48,248 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. 2022-01-29 13:57:48,401 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2022-01-29 13:57:48,401 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2022-01-29 13:57:48,402 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. 2022-01-29 13:57:48,403 - stpipe.Image3Pipeline.tweakreg - INFO - Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... 2022-01-29 13:57:48,404 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2022-01-29 13:57:48,405 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.175218 FIT MAE: 0.128754 2022-01-29 13:57:48,406 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 95 objects. 2022-01-29 13:57:48,475 - stpipe.Image3Pipeline.tweakreg - INFO - Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. 2022-01-29 13:57:48,610 - stpipe.Image3Pipeline.tweakreg - INFO - Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. 2022-01-29 13:57:48,610 - stpipe.Image3Pipeline.tweakreg - INFO - Computing initial guess for X and Y shifts... 2022-01-29 13:57:48,611 - stpipe.Image3Pipeline.tweakreg - INFO - Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. 2022-01-29 13:57:48,612 - stpipe.Image3Pipeline.tweakreg - INFO - Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... 2022-01-29 13:57:48,613 - stpipe.Image3Pipeline.tweakreg - INFO - Performing 'general' fit 2022-01-29 13:57:48,614 - stpipe.Image3Pipeline.tweakreg - INFO - Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - FIT RMSE: 0.185757 FIT MAE: 0.136126 2022-01-29 13:57:48,615 - stpipe.Image3Pipeline.tweakreg - INFO - Final solution based on 87 objects. 2022-01-29 13:57:48,951 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:48,951 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:57:48.951164 2022-01-29 13:57:48,951 - stpipe.Image3Pipeline.tweakreg - INFO - ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.862494 2022-01-29 13:57:48,951 - stpipe.Image3Pipeline.tweakreg - INFO - 2022-01-29 13:57:50,306 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits 2022-01-29 13:57:51,704 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits 2022-01-29 13:57:52,939 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits 2022-01-29 13:57:54,323 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits 2022-01-29 13:57:55,658 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits 2022-01-29 13:57:57,195 - stpipe.Image3Pipeline.tweakreg - INFO - Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits 2022-01-29 13:57:57,195 - stpipe.Image3Pipeline.tweakreg - INFO - Step tweakreg done 2022-01-29 13:57:57,740 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch running with args (<ModelContainer>,). 2022-01-29 13:57:57,741 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} 2022-01-29 13:57:57,862 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:57:57,863 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:57:57.862827 2022-01-29 13:57:57,863 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:57:57,863 - stpipe.Image3Pipeline.skymatch - INFO - Sky computation method: 'global+match' 2022-01-29 13:57:57,863 - stpipe.Image3Pipeline.skymatch - INFO - Sky matching direction: DOWN 2022-01-29 13:57:57,863 - stpipe.Image3Pipeline.skymatch - INFO - Sky subtraction from image data: OFF 2022-01-29 13:57:57,864 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:57:57,864 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing differences in sky values in overlapping regions. 2022-01-29 13:58:01,456 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000957257 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000957257 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.00120383 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.00120383 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:58:01,457 - stpipe.Image3Pipeline.skymatch - INFO - ---- Computing "global" sky - smallest sky value across *all* input images. 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - "Global" sky value correction: 0.15087507028201788 [not converted] 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - ---- Final (match+global) sky for: 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=1. Sky background of component images: 2022-01-29 13:58:02,170 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=2. Sky background of component images: 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - * Group ID=3. Sky background of component images: 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:58:02.171508 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.308681 2022-01-29 13:58:02,171 - stpipe.Image3Pipeline.skymatch - INFO - 2022-01-29 13:58:02,190 - stpipe.Image3Pipeline.skymatch - INFO - Step skymatch done 2022-01-29 13:58:02,425 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 13:58:02,426 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 13:58:02,432 - stpipe.Image3Pipeline.outlier_detection - INFO - Performing outlier detection on 6 inputs 2022-01-29 13:58:05,773 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:10,904 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:17,286 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:23,848 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:31,752 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:39,312 - stpipe.Image3Pipeline.outlier_detection - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:58:44,906 - stpipe.Image3Pipeline.outlier_detection - INFO - Generating median from 3 images 2022-01-29 13:58:49,635 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting median... 2022-01-29 13:58:54,042 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:58:59,181 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:59:05,369 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:59:12,034 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:59:19,360 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:59:26,954 - stpipe.Image3Pipeline.outlier_detection - INFO - Blotting (2048, 2048) <-- (2340, 5107) 2022-01-29 13:59:34,137 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits 2022-01-29 13:59:35,382 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits 2022-01-29 13:59:36,968 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits 2022-01-29 13:59:38,044 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits 2022-01-29 13:59:39,066 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits 2022-01-29 13:59:40,126 - stpipe.Image3Pipeline.outlier_detection - INFO - Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits 2022-01-29 13:59:40,127 - stpipe.Image3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 13:59:40,393 - stpipe.Image3Pipeline.resample - INFO - Step resample running with args (<ModelContainer>,). 2022-01-29 13:59:40,394 - stpipe.Image3Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 13:59:40,418 - stpipe.Image3Pipeline.resample - INFO - Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits 2022-01-29 13:59:40,613 - stpipe.Image3Pipeline.resample - INFO - Blending metadata for jw42424-o002_t001_nircam_clear-f444w 2022-01-29 13:59:41,308 - stpipe.Image3Pipeline.resample - INFO - Resampling science data 2022-01-29 13:59:44,587 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:59:49,797 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 13:59:55,541 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:00,967 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:06,592 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:12,139 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:14,088 - stpipe.Image3Pipeline.resample - INFO - Resampling var_rnoise 2022-01-29 14:00:17,023 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:21,780 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:27,102 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:32,538 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:37,773 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:43,281 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:45,248 - stpipe.Image3Pipeline.resample - INFO - Resampling var_poisson 2022-01-29 14:00:48,029 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:52,717 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:00:57,895 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:03,285 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:08,553 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:13,887 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:15,883 - stpipe.Image3Pipeline.resample - INFO - Resampling var_flat 2022-01-29 14:01:18,506 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:23,163 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:28,378 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:33,871 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:39,211 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:44,651 - stpipe.Image3Pipeline.resample - INFO - Drizzling (2048, 2048) --> (2340, 5107) 2022-01-29 14:01:46,716 - stpipe.Image3Pipeline.resample - INFO - Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 2022-01-29 14:01:48,107 - stpipe.Image3Pipeline.resample - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits 2022-01-29 14:01:48,108 - stpipe.Image3Pipeline.resample - INFO - Step resample done 2022-01-29 14:01:48,379 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). 2022-01-29 14:01:48,381 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} 2022-01-29 14:01:48,403 - stpipe.Image3Pipeline.source_catalog - INFO - Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits 2022-01-29 14:01:48,414 - stpipe.Image3Pipeline.source_catalog - INFO - Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf 2022-01-29 14:01:48,415 - stpipe.Image3Pipeline.source_catalog - INFO - Instrument: NIRCAM 2022-01-29 14:01:48,415 - stpipe.Image3Pipeline.source_catalog - INFO - Detector: MULTIPLE 2022-01-29 14:01:48,415 - stpipe.Image3Pipeline.source_catalog - INFO - Filter: F444W 2022-01-29 14:01:48,415 - stpipe.Image3Pipeline.source_catalog - INFO - Pupil: CLEAR 2022-01-29 14:01:48,415 - stpipe.Image3Pipeline.source_catalog - INFO - Subarray: FULL 2022-01-29 14:01:48,465 - stpipe.Image3Pipeline.source_catalog - INFO - AB to Vega magnitude offset 3.24181 2022-01-29 14:01:52,757 - stpipe.Image3Pipeline.source_catalog - INFO - Detected 124 sources 2022-01-29 14:01:53,870 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv 2022-01-29 14:01:54,048 - stpipe.Image3Pipeline.source_catalog - INFO - Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits 2022-01-29 14:01:54,049 - stpipe.Image3Pipeline.source_catalog - INFO - Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits 2022-01-29 14:01:54,049 - stpipe.Image3Pipeline.source_catalog - INFO - Step source_catalog done 2022-01-29 14:01:54,051 - stpipe.Image3Pipeline - INFO - Step Image3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00001_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.992200467 11.981139745 21.991768541 12.017334070 21.955502433 12.017255951 21.955073011 11.981325389 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00001_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.992208116 11.981156721 21.992212397 12.017345076 21.955087891 12.017346833 21.955088593 11.981158478 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00001_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00001_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.044182916 11.982930607 22.043709384 12.018801247 22.007504871 12.018838330 22.007113209 11.982697360 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.044193826 11.982759560 22.044151973 12.018890544 22.007086114 12.018847026 22.007132935 11.982716048 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00002_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00002_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00002_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00002_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.994326024 11.983226970 21.993894095 12.019421295 21.957627705 12.019343176 21.957198281 11.983412614 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00002_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.994333673 11.983243947 21.994337954 12.019432302 21.957213160 12.019434058 21.957213863 11.983245703 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00002_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00002_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrca5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrca5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 22.046308859 11.985018122 22.045835324 12.020888761 22.009630531 12.020925845 22.009238865 11.984784875 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0313.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0092.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0015.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.441577 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrca5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2068, 2075) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046319769 11.984847074 22.046277916 12.020978058 22.009211770 12.020934541 22.009258592 11.984803562 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00003_nrca5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00003_nrca5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424001001_01101_00003_nrcb5_rate.fits HTTP/1.1" 200 83937600 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE2PIPELINE reference files found. INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00003_nrcb5_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'drizpars', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0096.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0001.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 21.996451581 11.985314490 21.996019648 12.021508815 21.959752977 12.021430695 21.959323551 11.985500133 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0339.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCBLONG INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0095.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0026.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 9.3367624614111e-14, PIXAR_A2 = 0.003972341489354567 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 0.389988 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw42424001001_01101_00003_nrcb5_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 blendheaders=False DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image2Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:71 Output mosaic size: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:411 Model size 16.4M available system memory 120.4G DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image2Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image2Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) DEBUG stpipe.Image2Pipeline.resample:resample.py:390 Output Sci shape: (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2067, 2074) INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 21.996459231 11.985331466 21.996463512 12.021519821 21.959338429 12.021521576 21.959339133 11.985333221 INFO stpipe.Image2Pipeline.resample:step.py:947 Saved model in jw42424001001_01101_00003_nrcb5_i2d.fits INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw42424001001_01101_00003_nrcb5_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw42424-o002_20191220t214154_image3_001_asn.json HTTP/1.1" 200 1408 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe:step.py:802 PARS-TWEAKREGSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-tweakregstep_0006.asdf INFO stpipe:step.py:810 PARS-TWEAKREGSTEP parameters are {'brightest': 100, 'catalog_format': 'ecsv', 'enforce_user_order': False, 'expand_refcat': False, 'fitgeometry': 'general', 'kernel_fwhm': 2.302, 'minobj': 15, 'nclip': 3, 'save_catalogs': False, 'searchrad': 1.0, 'separation': 0.5, 'sigma': 3.0, 'snr_threshold': 10, 'tolerance': 1.0, 'use2dhist': True, 'xoffset': 0.0, 'yoffset': 0.0} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-IMAGE3PIPELINE reference files found. INFO stpipe.Image3Pipeline:step.py:330 Image3Pipeline instance created. INFO stpipe.Image3Pipeline.assign_mtwcs:step.py:330 AssignMTWcsStep instance created. INFO stpipe.Image3Pipeline.tweakreg:step.py:330 TweakRegStep instance created. INFO stpipe.Image3Pipeline.skymatch:step.py:330 SkyMatchStep instance created. INFO stpipe.Image3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Image3Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe.Image3Pipeline.source_catalog:step.py:330 SourceCatalogStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image3Pipeline:step.py:390 Step Image3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424-o002_20191220t214154_image3_001_asn.json',). INFO stpipe.Image3Pipeline:step.py:394 Step Image3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'steps': {'assign_mtwcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_mtwcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0'}, 'tweakreg': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False}, 'skymatch': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1}, 'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'source_catalog': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8}}} DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw42424001001_01101_00001_nrca5_cal.fits' reftypes = ['abvegaoffset', 'apcorr', 'drizpars'] INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for ABVEGAOFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for APCORR reference file is '/grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits'. INFO stpipe.Image3Pipeline:pipeline.py:288 Prefetch for DRIZPARS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits'. INFO stpipe.Image3Pipeline:calwebb_image3.py:53 Starting calwebb_image3 ... DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science', 'background']: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00001_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00002_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrca5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:container.py:215 Files accepted for processing jw42424001001_01101_00003_nrcb5_cal.fits: DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00001_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00002_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrca5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0/jw42424001001_01101_00003_nrcb5_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.Image3Pipeline:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.Image3Pipeline.tweakreg:step.py:390 Step tweakreg running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.tweakreg:step.py:394 Step tweakreg parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'save_catalogs': False, 'catalog_format': 'ecsv', 'kernel_fwhm': 2.302, 'snr_threshold': 10, 'brightest': 100, 'peakmax': None, 'enforce_user_order': False, 'expand_refcat': False, 'minobj': 15, 'searchrad': 1.0, 'use2dhist': True, 'separation': 0.5, 'tolerance': 1.0, 'xoffset': 0.0, 'yoffset': 0.0, 'fitgeometry': 'general', 'nclip': 3, 'sigma': 3.0, 'align_to_gaia': False, 'gaia_catalog': 'GAIADR2', 'min_gaia': 5, 'save_gaia_catalog': False} DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 91 sources in jw42424001001_01101_00001_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00002_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 92 sources in jw42424001001_01101_00002_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 96 sources in jw42424001001_01101_00003_nrca5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:102 Detected 100 sources in jw42424001001_01101_00003_nrcb5_cal.fits. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:131 INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:132 Number of image groups to be aligned: 3. INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:134 Image groups: INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00001_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00001_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00002_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00002_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:164 * Images in GROUP 'jw42424001001_01101_00003_nrc': INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrca5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:167 jw42424001001_01101_00003_nrcb5_cal INFO stpipe.Image3Pipeline.tweakreg:tweakreg_step.py:170 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:490 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:57:48.088670 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:491 ***** tweakwcs.imalign.align_wcs() started on 2022-01-29 13:57:48.088670 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:493 Version 0.7.3 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:614 Selected image 'GROUP ID: jw42424001001_01101_00001_nrc' as reference image INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00002_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00002_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of 0.002322, 0.004688 with significance of 160.3 and 224 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 96 matches for 'GROUP ID: jw42424001001_01101_00002_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00002_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0279489 YSH: -0.0730335 PROPER ROT: 0.00561645 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00561645 SKEW: -0.0223524 ROT_X: 0.0167927 ROT_Y: -0.00555977 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 1.00014 SCALE_X: 1.00016 SCALE_Y: 1.00012 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.175218 FIT MAE: 0.128754 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 95 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:631 Aligning image catalog 'GROUP ID: jw42424001001_01101_00003_nrc' to the reference catalog. DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.tweakreg:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:240 Matching sources from 'jw42424001001_01101_00003_nrc' catalog with sources from the reference 'jw42424001001_01101_00001_nrc' catalog. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:288 Computing initial guess for X and Y shifts... INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:matchutils.py:336 Found initial X and Y shifts of -0.001608, -0.0008078 with significance of 140.9 and 220 matches. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:883 Found 88 matches for 'GROUP ID: jw42424001001_01101_00003_nrc'... INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:linearfit.py:309 Performing 'general' fit INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1027 Computed 'general' fit for GROUP ID: jw42424001001_01101_00003_nrc: INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1037 XSH: 0.0304213 YSH: -0.0565015 PROPER ROT: 0.00576075 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1039 <ROT>: 0.00576075 SKEW: -0.0145173 ROT_X: 0.0130194 ROT_Y: -0.00149791 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1042 <SCALE>: 0.999931 SCALE_X: 1.00017 SCALE_Y: 0.999693 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1047 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1048 FIT RMSE: 0.185757 FIT MAE: 0.136126 INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:wcsimage.py:1050 Final solution based on 87 objects. INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:663 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:57:48.951164 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:664 ***** tweakwcs.imalign.align_wcs() ended on 2022-01-29 13:57:48.951164 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.862494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:666 ***** tweakwcs.imalign.align_wcs() TOTAL RUN TIME: 0:00:00.862494 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:imalign.py:668 INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00001_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00002_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00002_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00003_nrca5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:947 Saved model in jw42424001001_01101_00003_nrcb5_tweakreg.fits INFO stpipe.Image3Pipeline.tweakreg:step.py:493 Step tweakreg done INFO stpipe.Image3Pipeline.skymatch:step.py:390 Step skymatch running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.skymatch:step.py:394 Step skymatch parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'skymethod': 'global+match', 'match_down': True, 'subtract': False, 'stepsize': None, 'skystat': 'mode', 'dqbits': '0', 'lower': None, 'upper': None, 'nclip': 5, 'lsigma': 4.0, 'usigma': 4.0, 'binwidth': 0.1} DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.skymatch:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:238 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:57:57.862827 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:239 ***** jwst.skymatch.skymatch.match() started on 2022-01-29 13:57:57.862827 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:241 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:252 Sky computation method: 'global+match' INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:254 Sky matching direction: DOWN INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF INFO stpipe.Image3Pipeline.skymatch:skymatch.py:257 Sky subtraction from image data: OFF DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:274 Total number of images to be sky-subtracted and/or matched: 6 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:280 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:281 ---- Image data conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=1. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=2. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:287 * Group ID=3. Conversion factors: DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 DEBUG stpipe.Image3Pipeline.skymatch:skymatch.py:289 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Conversion factor = 1 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:300 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:301 ---- Computing differences in sky values in overlapping regions. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000957257 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.000957257 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000957257 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.000957257 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.00120383 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.00120383 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.00120383 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:414 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.00120383 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:336 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:339 ---- Computing "global" sky - smallest sky value across *all* input images. INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:353 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15087507028201788 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:357 "Global" sky value correction: 0.15087507028201788 [not converted] INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:361 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:362 ---- Final (match+global) sky for: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=1. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrca5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00001_nrcb5_tweakreg.fits. Sky background: 0.150875 (old=0, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=2. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrca5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00002_nrcb5_tweakreg.fits. Sky background: 0.151832 (old=0.000957257, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:404 * Group ID=3. Sky background of component images: INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrca5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:410 - Image ID=jw42424001001_01101_00003_nrcb5_tweakreg.fits. Sky background: 0.152079 (old=0.00120383, delta=0.150875) INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:368 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:58:02.171508 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:369 ***** jwst.skymatch.skymatch.match() ended on 2022-01-29 13:58:02.171508 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.308681 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:371 ***** jwst.skymatch.skymatch.match() TOTAL RUN TIME: 0:00:04.308681 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:skymatch.py:373 INFO stpipe.Image3Pipeline.skymatch:step.py:493 Step skymatch done INFO stpipe.Image3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'crf', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': True, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 6 inputs DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:411 Model size 45.6M available system memory 120.4G DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.28485788736425 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.28485788736425 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.16565665694313 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 33.19279386931629 INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 3 images DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:313 Blotting median... DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:505 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:506 Sci shape: (2048, 2048) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) INFO stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:509 Blotting (2048, 2048) <-- (2340, 5107) DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15087507028201788 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15087507028201788 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 103542 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 103542 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171452 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4171452 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15087507028201788 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.15087507028201788 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85882 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166010 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166010 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1518323275845312 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1518323275845312 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 81925 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169810 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4169810 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1518323275845312 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1518323275845312 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85894 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160581 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4160581 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 82127 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167950 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4167950 DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:400 Adding background level 0.1520789019602153 to blotted image DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 85934 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166485 DEBUG stpipe.Image3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4166485 INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00001_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00001_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00002_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00002_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00003_nrca5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:947 Saved model in jw42424001001_01101_00003_nrcb5_a3001_crf.fits INFO stpipe.Image3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Image3Pipeline.resample:step.py:390 Step resample running with args (<ModelContainer>,). INFO stpipe.Image3Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample_step.py:74 Drizpars reference file: /grp/crds/cache/references/jwst/jwst_nircam_drizpars_0001.fits DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 good_bits=~DO_NOT_USE+NON_SCIENCE DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 single=False DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 blendheaders=True DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pixfrac=1.0 DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 kernel=square DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 fillval=INDEF DEBUG stpipe.Image3Pipeline.resample:resample_step.py:190 pscale_ratio=1.0 DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:71 Output mosaic size: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:444 Running OS is "Linux" DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.8G DEBUG stpipe.Image3Pipeline.resample:util.py:411 Model size 45.6M available system memory 118.8G DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w INFO stpipe.Image3Pipeline.resample:resample.py:102 Blending metadata for jw42424-o002_t001_nircam_clear-f444w DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.resample:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data INFO stpipe.Image3Pipeline.resample:resample.py:154 Resampling science data DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:368 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:369 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:gwcs_drizzle.py:370 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:gwcs_drizzle.py:373 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_rnoise DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_poisson DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat INFO stpipe.Image3Pipeline.resample:resample.py:198 Resampling var_flat DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample_utils.py:73 Bounding box from data shape: ((-0.5, 2047.5), (-0.5, 2047.5)) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:388 Pixmap shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:389 Input Sci shape: (2048, 2048) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) DEBUG stpipe.Image3Pipeline.resample:resample.py:390 Output Sci shape: (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:resample.py:392 Drizzling (2048, 2048) --> (2340, 5107) INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:util.py:957 Update S_REGION to POLYGON ICRS 22.046357408 11.980671438 22.046314157 12.021556954 21.955060495 12.021449814 21.955117587 11.980564315 INFO stpipe.Image3Pipeline.resample:step.py:947 Saved model in jw42424-o002_t001_nircam_clear-f444w_i2d.fits INFO stpipe.Image3Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image3Pipeline.source_catalog:step.py:390 Step source_catalog running with args (<ImageModel(2340, 5107) from jw42424-o002_t001_nircam_clear-f444w_i2d.fits>,). INFO stpipe.Image3Pipeline.source_catalog:step.py:394 Step source_catalog parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'cat', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_run_detector1pipeline0', 'bkg_boxsize': 100, 'kernel_fwhm': 2.0, 'snr_threshold': 20.0, 'npixels': 5, 'deblend': False, 'aperture_ee1': 30, 'aperture_ee2': 50, 'aperture_ee3': 70, 'ci1_star_threshold': 2.0, 'ci2_star_threshold': 1.8} DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:52 Using APCORR reference file /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:59 Using ABVEGAOFFSET reference file /grp/crds/cache/references/jwst/jwst_nircam_abvegaoffset_0001.asdf INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:88 Instrument: NIRCAM INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:90 Detector: MULTIPLE INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:92 Filter: F444W INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:94 Pupil: CLEAR INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:96 Subarray: FULL DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_apcorr_0004.fits as <class 'jwst.datamodels.apcorr.NrcImgApcorrModel'> DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog.py:261 AB to Vega magnitude offset 3.24181 INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:100 Detected 124 sources INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:116 Wrote source catalog: jw42424-o002_t001_nircam_clear-f444w_cat.ecsv DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image3Pipeline.source_catalog:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image3Pipeline.source_catalog:step.py:947 Saved model in jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:source_catalog_step.py:124 Wrote segmentation map: jw42424-o002_t001_nircam_clear-f444w_segm.fits INFO stpipe.Image3Pipeline.source_catalog:step.py:493 Step source_catalog done INFO stpipe.Image3Pipeline:step.py:493 Step Image3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00001_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00002_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00002_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00002_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00002_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00003_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00003_nrca5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00003_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw42424001001_01101_00003_nrcb5_tweakreg.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_mtimage.py::test_nircam_image_moving_target_kwds[no_mt_table] | 4.20 | |
|
-------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 ------------------------------Captured stderr call------------------------------ 2022-01-29 14:04:46,406 - stpipe - INFO - Moving target position table not found in the file -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/image/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_image_moving_targe2/jw00634_nrcblong_no_mtt_uncal.fits as <class 'jwst.datamodels.level1b.Level1bModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe:set_telescope_pointing.py:465 Moving target position table not found in the file INFO stpipe:set_telescope_pointing.py:465 Moving target position table not found in the file DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_mtimage/jw00634_nrcblong_no_mtt_uncal.fits HTTP/1.1" 200 83949120 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_subarray_4amp.py::test_nircam_detector1_subarray[trapsfilled] | 1.11 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_subarray_4amp/jw00617196001_02102_00001_nrca4_trapsfilled.fits HTTP/1.1" 200 50365440 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[calints] | 21.72 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 14:05:15,487 - stpipe - INFO - PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf 2022-01-29 14:05:15,511 - stpipe.Spec2Pipeline - INFO - Spec2Pipeline instance created. 2022-01-29 14:05:15,512 - stpipe.Spec2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 14:05:15,513 - stpipe.Spec2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 14:05:15,514 - stpipe.Spec2Pipeline.imprint_subtract - INFO - ImprintStep instance created. 2022-01-29 14:05:15,514 - stpipe.Spec2Pipeline.msa_flagging - INFO - MSAFlagOpenStep instance created. 2022-01-29 14:05:15,515 - stpipe.Spec2Pipeline.extract_2d - INFO - Extract2dStep instance created. 2022-01-29 14:05:15,518 - stpipe.Spec2Pipeline.master_background - INFO - MasterBackgroundNrsSlitsStep instance created. 2022-01-29 14:05:15,518 - stpipe.Spec2Pipeline.master_background.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 14:05:15,519 - stpipe.Spec2Pipeline.master_background.pathloss - INFO - PathLossStep instance created. 2022-01-29 14:05:15,520 - stpipe.Spec2Pipeline.master_background.barshadow - INFO - BarShadowStep instance created. 2022-01-29 14:05:15,521 - stpipe.Spec2Pipeline.master_background.photom - INFO - PhotomStep instance created. 2022-01-29 14:05:15,521 - stpipe.Spec2Pipeline.wavecorr - INFO - WavecorrStep instance created. 2022-01-29 14:05:15,522 - stpipe.Spec2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 14:05:15,522 - stpipe.Spec2Pipeline.srctype - INFO - SourceTypeStep instance created. 2022-01-29 14:05:15,523 - stpipe.Spec2Pipeline.straylight - INFO - StraylightStep instance created. 2022-01-29 14:05:15,524 - stpipe.Spec2Pipeline.fringe - INFO - FringeStep instance created. 2022-01-29 14:05:15,525 - stpipe.Spec2Pipeline.pathloss - INFO - PathLossStep instance created. 2022-01-29 14:05:15,525 - stpipe.Spec2Pipeline.barshadow - INFO - BarShadowStep instance created. 2022-01-29 14:05:15,526 - stpipe.Spec2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 14:05:15,527 - stpipe.Spec2Pipeline.resample_spec - INFO - ResampleSpecStep instance created. 2022-01-29 14:05:15,528 - stpipe.Spec2Pipeline.cube_build - INFO - CubeBuildStep instance created. 2022-01-29 14:05:15,530 - stpipe.Spec2Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-01-29 14:05:15,530 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:15,530 - stpipe - INFO - OS: Linux 2022-01-29 14:05:15,732 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). 2022-01-29 14:05:15,744 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} 2022-01-29 14:05:15,803 - stpipe.Spec2Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for APCORR reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for AREA reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 14:05:15,816 - stpipe.Spec2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. 2022-01-29 14:05:15,818 - stpipe.Spec2Pipeline - INFO - Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. 2022-01-29 14:05:15,818 - stpipe.Spec2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 14:05:15,818 - stpipe.Spec2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. 2022-01-29 14:05:15,819 - stpipe.Spec2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. 2022-01-29 14:05:15,820 - stpipe.Spec2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 14:05:15,820 - stpipe.Spec2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 14:05:15,820 - stpipe.Spec2Pipeline - INFO - Prefetch for FRINGE reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 14:05:15,821 - stpipe.Spec2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits'. 2022-01-29 14:05:15,822 - stpipe.Spec2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 14:05:15,822 - stpipe.Spec2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 14:05:15,822 - stpipe.Spec2Pipeline - INFO - Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. 2022-01-29 14:05:15,824 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVECORR reference file is 'N/A'. 2022-01-29 14:05:15,824 - stpipe.Spec2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. 2022-01-29 14:05:15,825 - stpipe.Spec2Pipeline - INFO - Starting calwebb_spec2 ... 2022-01-29 14:05:15,826 - stpipe.Spec2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2022-01-29 14:05:15,826 - stpipe.Spec2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... 2022-01-29 14:05:16,091 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2022-01-29 14:05:16,092 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 14:05:16,489 - stpipe.Spec2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 14:05:16,500 - stpipe.Spec2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 14:05:16,716 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2022-01-29 14:05:16,717 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None} 2022-01-29 14:05:16,717 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step skipped. 2022-01-29 14:05:16,719 - stpipe.Spec2Pipeline.bkg_subtract - INFO - Step bkg_subtract done 2022-01-29 14:05:16,904 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). 2022-01-29 14:05:16,905 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2022-01-29 14:05:16,905 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step skipped. 2022-01-29 14:05:16,907 - stpipe.Spec2Pipeline.imprint_subtract - INFO - Step imprint_subtract done 2022-01-29 14:05:17,093 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2022-01-29 14:05:17,094 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2022-01-29 14:05:17,095 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step skipped. 2022-01-29 14:05:17,096 - stpipe.Spec2Pipeline.msa_flagging - INFO - Step msa_flagging done 2022-01-29 14:05:17,275 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). 2022-01-29 14:05:17,276 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 14:05:18,887 - stpipe.Spec2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2022-01-29 14:05:19,111 - stpipe.Spec2Pipeline.flat_field - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits 2022-01-29 14:05:19,111 - stpipe.Spec2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 14:05:19,333 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). 2022-01-29 14:05:19,334 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} 2022-01-29 14:05:19,355 - stpipe.Spec2Pipeline.extract_2d - INFO - EXP_TYPE is NRC_TSGRISM 2022-01-29 14:05:19,355 - stpipe.Spec2Pipeline.extract_2d - INFO - Setting extraction height to 64 2022-01-29 14:05:19,391 - stpipe.Spec2Pipeline.extract_2d - INFO - Using default order extraction from reference file 2022-01-29 14:05:19,392 - stpipe.Spec2Pipeline.extract_2d - INFO - Extracting order: [1] 2022-01-29 14:05:19,504 - stpipe.Spec2Pipeline.extract_2d - INFO - WCS made explicit for order: 1 2022-01-29 14:05:19,504 - stpipe.Spec2Pipeline.extract_2d - INFO - Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) 2022-01-29 14:05:19,504 - stpipe.Spec2Pipeline.extract_2d - INFO - Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) 2022-01-29 14:05:19,618 - stpipe.Spec2Pipeline.extract_2d - INFO - Finished extraction 2022-01-29 14:05:19,807 - stpipe.Spec2Pipeline.extract_2d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits 2022-01-29 14:05:19,807 - stpipe.Spec2Pipeline.extract_2d - INFO - Step extract_2d done 2022-01-29 14:05:20,041 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). 2022-01-29 14:05:20,042 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2022-01-29 14:05:20,114 - stpipe.Spec2Pipeline.srctype - INFO - Input EXP_TYPE is NRC_TSGRISM 2022-01-29 14:05:20,114 - stpipe.Spec2Pipeline.srctype - INFO - Input SRCTYAPT = None 2022-01-29 14:05:20,114 - stpipe.Spec2Pipeline.srctype - WARNING - SRCTYAPT keyword not found in input; using SRCTYPE instead 2022-01-29 14:05:20,114 - stpipe.Spec2Pipeline.srctype - INFO - Input is a TSO exposure; setting SRCTYPE = POINT 2022-01-29 14:05:20,279 - stpipe.Spec2Pipeline.srctype - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits 2022-01-29 14:05:20,279 - stpipe.Spec2Pipeline.srctype - INFO - Step srctype done 2022-01-29 14:05:20,412 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2022-01-29 14:05:20,413 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} 2022-01-29 14:05:20,413 - stpipe.Spec2Pipeline.straylight - INFO - Step skipped. 2022-01-29 14:05:20,414 - stpipe.Spec2Pipeline.straylight - INFO - Step straylight done 2022-01-29 14:05:20,526 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2022-01-29 14:05:20,527 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} 2022-01-29 14:05:20,528 - stpipe.Spec2Pipeline.fringe - INFO - Step skipped. 2022-01-29 14:05:20,529 - stpipe.Spec2Pipeline.fringe - INFO - Step fringe done 2022-01-29 14:05:20,640 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2022-01-29 14:05:20,640 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:20,640 - stpipe.Spec2Pipeline.pathloss - INFO - Step skipped. 2022-01-29 14:05:20,642 - stpipe.Spec2Pipeline.pathloss - INFO - Step pathloss done 2022-01-29 14:05:20,755 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2022-01-29 14:05:20,756 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:20,756 - stpipe.Spec2Pipeline.barshadow - INFO - Step skipped. 2022-01-29 14:05:20,757 - stpipe.Spec2Pipeline.barshadow - INFO - Step barshadow done 2022-01-29 14:05:20,872 - stpipe.Spec2Pipeline.photom - INFO - Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). 2022-01-29 14:05:20,873 - stpipe.Spec2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:21,085 - stpipe.Spec2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits 2022-01-29 14:05:21,085 - stpipe.Spec2Pipeline.photom - INFO - Using area reference file: N/A 2022-01-29 14:05:21,230 - stpipe.Spec2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 14:05:21,230 - stpipe.Spec2Pipeline.photom - INFO - detector: NRCALONG 2022-01-29 14:05:21,230 - stpipe.Spec2Pipeline.photom - INFO - exp_type: NRC_TSGRISM 2022-01-29 14:05:21,230 - stpipe.Spec2Pipeline.photom - INFO - filter: F444W 2022-01-29 14:05:21,230 - stpipe.Spec2Pipeline.photom - INFO - pupil: GRISMR 2022-01-29 14:05:21,289 - stpipe.Spec2Pipeline.photom - INFO - PHOTMJSR value: 697.721 2022-01-29 14:05:21,305 - stpipe.Spec2Pipeline.photom - INFO - Step photom done 2022-01-29 14:05:21,439 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2022-01-29 14:05:21,440 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2022-01-29 14:05:21,507 - stpipe.Spec2Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2022-01-29 14:05:21,574 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2022-01-29 14:05:21,574 - stpipe.Spec2Pipeline.extract_1d - INFO - APCORR will NOT be applied 2022-01-29 14:05:21,605 - stpipe.Spec2Pipeline.extract_1d - INFO - Processing spectral order 1 2022-01-29 14:05:21,606 - stpipe.Spec2Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2022-01-29 14:05:21,609 - stpipe.Spec2Pipeline.extract_1d - INFO - Using extraction limits: 2022-01-29 14:05:21,609 - stpipe.Spec2Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2022-01-29 14:05:21,609 - stpipe.Spec2Pipeline.extract_1d - INFO - with background subtraction 2022-01-29 14:05:26,983 - stpipe.Spec2Pipeline.extract_1d - INFO - All 2 integrations done 2022-01-29 14:05:27,114 - stpipe.Spec2Pipeline.extract_1d - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits 2022-01-29 14:05:27,114 - stpipe.Spec2Pipeline.extract_1d - INFO - Step extract_1d done 2022-01-29 14:05:27,114 - stpipe.Spec2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong 2022-01-29 14:05:27,114 - stpipe.Spec2Pipeline - INFO - Ending calwebb_spec2 2022-01-29 14:05:27,280 - stpipe.Spec2Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits 2022-01-29 14:05:27,280 - stpipe.Spec2Pipeline - INFO - Step Spec2Pipeline done 2022-01-29 14:05:27,729 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf 2022-01-29 14:05:27,746 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} 2022-01-29 14:05:28,360 - CRDS - ERROR - Error determining best reference for 'pars-whitelightstep' = parameter='META.INSTRUMENT.PUPIL [PUPIL]' value='GRISMR' is not in ['CLEAR'] 2022-01-29 14:05:28,507 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2022-01-29 14:05:28,508 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:05:28,509 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2022-01-29 14:05:28,509 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-01-29 14:05:28,510 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2022-01-29 14:05:28,510 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:28,510 - stpipe - INFO - OS: Linux 2022-01-29 14:05:28,643 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). 2022-01-29 14:05:28,647 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2022-01-29 14:05:28,805 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] 2022-01-29 14:05:28,809 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. 2022-01-29 14:05:28,810 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. 2022-01-29 14:05:28,812 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2022-01-29 14:05:29,102 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2022-01-29 14:05:29,229 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 14:05:29,231 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 14:05:29,235 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 2 inputs 2022-01-29 14:05:29,310 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 2 images 2022-01-29 14:05:29,520 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 14:05:29,521 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2022-01-29 14:05:29,695 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits 2022-01-29 14:05:29,710 - stpipe.Tso3Pipeline - INFO - Extracting 1-D spectra ... 2022-01-29 14:05:29,841 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2022-01-29 14:05:29,842 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} 2022-01-29 14:05:29,912 - stpipe.Tso3Pipeline.extract_1d - INFO - Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json 2022-01-29 14:05:29,982 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR reference file name is "N/A" 2022-01-29 14:05:29,982 - stpipe.Tso3Pipeline.extract_1d - INFO - APCORR will NOT be applied 2022-01-29 14:05:30,005 - stpipe.Tso3Pipeline.extract_1d - INFO - Processing spectral order 1 2022-01-29 14:05:30,005 - stpipe.Tso3Pipeline.extract_1d - INFO - Beginning loop over 2 integrations ... 2022-01-29 14:05:30,008 - stpipe.Tso3Pipeline.extract_1d - INFO - Using extraction limits: 2022-01-29 14:05:30,009 - stpipe.Tso3Pipeline.extract_1d - INFO - xstart=4, xstop=2043, ystart=31, ystop=35 2022-01-29 14:05:30,009 - stpipe.Tso3Pipeline.extract_1d - INFO - with background subtraction 2022-01-29 14:05:35,389 - stpipe.Tso3Pipeline.extract_1d - INFO - All 2 integrations done 2022-01-29 14:05:35,403 - stpipe.Tso3Pipeline.extract_1d - INFO - Step extract_1d done 2022-01-29 14:05:35,411 - stpipe.Tso3Pipeline - INFO - Performing white-light photometry ... 2022-01-29 14:05:35,537 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). 2022-01-29 14:05:35,538 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} 2022-01-29 14:05:35,545 - stpipe.Tso3Pipeline.white_light - INFO - Step white_light done 2022-01-29 14:05:35,666 - stpipe.Tso3Pipeline - INFO - Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits 2022-01-29 14:05:35,666 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv 2022-01-29 14:05:35,669 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jwst_nircam_tsgrism_extract1d.json HTTP/1.1" 200 705 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits HTTP/1.1" 200 21035520 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-MASTERBACKGROUNDNRSSLITSSTEP parameters from CRDS DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:pipeline.py:182 No PARS-MASTERBACKGROUNDNRSSLITSSTEP reference files found. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-SPEC2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-SPEC2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-spec2pipeline_0001.asdf INFO stpipe.Spec2Pipeline:step.py:330 Spec2Pipeline instance created. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Spec2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:330 ImprintStep instance created. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:330 MSAFlagOpenStep instance created. INFO stpipe.Spec2Pipeline.extract_2d:step.py:330 Extract2dStep instance created. INFO stpipe.Spec2Pipeline.master_background:step.py:330 MasterBackgroundNrsSlitsStep instance created. INFO stpipe.Spec2Pipeline.master_background.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.master_background.pathloss:step.py:330 PathLossStep instance created. INFO stpipe.Spec2Pipeline.master_background.barshadow:step.py:330 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.master_background.photom:step.py:330 PhotomStep instance created. INFO stpipe.Spec2Pipeline.wavecorr:step.py:330 WavecorrStep instance created. INFO stpipe.Spec2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Spec2Pipeline.srctype:step.py:330 SourceTypeStep instance created. INFO stpipe.Spec2Pipeline.straylight:step.py:330 StraylightStep instance created. INFO stpipe.Spec2Pipeline.fringe:step.py:330 FringeStep instance created. INFO stpipe.Spec2Pipeline.pathloss:step.py:330 PathLossStep instance created. INFO stpipe.Spec2Pipeline.barshadow:step.py:330 BarShadowStep instance created. INFO stpipe.Spec2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Spec2Pipeline.resample_spec:step.py:330 ResampleSpecStep instance created. INFO stpipe.Spec2Pipeline.cube_build:step.py:330 CubeBuildStep instance created. INFO stpipe.Spec2Pipeline.extract_1d:step.py:330 Extract1dStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Spec2Pipeline:step.py:390 Step Spec2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits',). INFO stpipe.Spec2Pipeline:step.py:394 Step Spec2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_bsub': False, 'fail_on_exception': True, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'imprint_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'msa_flagging': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'extract_2d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0}, 'master_background': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'force_subtract': False, 'save_background': False, 'user_background': None, 'inverse': False, 'steps': {'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}}}, 'wavecorr': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'srctype': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'straylight': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0}, 'fringe': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'}, 'pathloss': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'barshadow': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample_spec': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}, 'cube_build': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': True, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'channel': 'all', 'band': 'all', 'grating': 'all', 'filter': 'all', 'output_type': 'band', 'scale1': 0.0, 'scale2': 0.0, 'scalew': 0.0, 'weighting': 'emsm', 'coord_system': 'skyalign', 'rois': 0.0, 'roiw': 0.0, 'weight_power': 2.0, 'wavemin': None, 'wavemax': None, 'single': False, 'xdebug': None, 'ydebug': None, 'zdebug': None, 'skip_dqflagging': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}}} DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Spec2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_rateints.fits' reftypes = ['apcorr', 'area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'fringe', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavecorr', 'wavelengthrange'] INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for APCORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for AREA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Override for EXTRACT1D reference file is '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for FRINGE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVECORR reference file is 'N/A'. INFO stpipe.Spec2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf'. INFO stpipe.Spec2Pipeline:calwebb_spec2.py:88 Starting calwebb_spec2 ... INFO stpipe.Spec2Pipeline:calwebb_spec2.py:106 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:172 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits ... DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Spec2Pipeline:calwebb_spec2.py:352 Science data does not allow fringe correction. Skipping "fringe". INFO stpipe.Spec2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': 'N/A', 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0090.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0002.asdf', 'specwcs': '/grp/crds/cache/references/jwst/jwst_nircam_specwcs_0010.asdf', 'regions': None, 'wavelengthrange': '/grp/crds/cache/references/jwst/jwst_nircam_wavelengthrange_0002.asdf', 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Spec2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:390 Step bkg_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:394 Step bkg_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None} INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.bkg_subtract:step.py:493 Step bkg_subtract done INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:390 Step imprint_subtract running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>, []). INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:394 Step imprint_subtract parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.imprint_subtract:step.py:493 Step imprint_subtract done INFO stpipe.Spec2Pipeline.msa_flagging:step.py:390 Step msa_flagging running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.msa_flagging:step.py:394 Step msa_flagging parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.msa_flagging:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.msa_flagging:step.py:493 Step msa_flagging done INFO stpipe.Spec2Pipeline.flat_field:step.py:390 Step flat_field running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_rateints.fits>,). INFO stpipe.Spec2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSGRISM DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0142.fits DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Spec2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=256 INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Spec2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:reffile_utils.py:332 slice xstart=0, xstop=2048, ystart=0, ystop=256 DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.flat_field:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits INFO stpipe.Spec2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Spec2Pipeline.extract_2d:step.py:390 Step extract_2d running with args (<CubeModel(2, 256, 2048) from jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits>,). INFO stpipe.Spec2Pipeline.extract_2d:step.py:394 Step extract_2d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'slit_name': None, 'extract_orders': None, 'tsgrism_extract_height': None, 'wfss_extract_half_height': 5, 'grism_objects': None, 'mmag_extract': 99.0} DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:extract_2d.py:58 EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:87 Setting extraction height to 64 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:87 Setting extraction height to 64 DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:100 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:100 Using default order extraction from reference file INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:120 Extracting order: [1] INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:120 Extracting order: [1] DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_2d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:208 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:208 WCS made explicit for order: 1 INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:209 Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:209 Spectral trace extents: (xmin: 711, ymin: 0), (xmax: 1909, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:211 Extraction limits: (xmin: 0, ymin: 0), (xmax: 2047, ymax: 63) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:247 Computing wavelengths (this takes a while ...) DEBUG stpipe.Spec2Pipeline.extract_2d:grisms.py:247 Computing wavelengths (this takes a while ...) INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:266 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:grisms.py:266 Finished extraction INFO stpipe.Spec2Pipeline.extract_2d:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits INFO stpipe.Spec2Pipeline.extract_2d:step.py:493 Step extract_2d done INFO stpipe.Spec2Pipeline.srctype:step.py:390 Step srctype running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits>,). INFO stpipe.Spec2Pipeline.srctype:step.py:394 Step srctype parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.srctype:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:35 Input EXP_TYPE is NRC_TSGRISM INFO stpipe.Spec2Pipeline.srctype:srctype.py:58 Input SRCTYAPT = None INFO stpipe.Spec2Pipeline.srctype:srctype.py:58 Input SRCTYAPT = None WARNING stpipe.Spec2Pipeline.srctype:srctype.py:60 SRCTYAPT keyword not found in input; using SRCTYPE instead WARNING stpipe.Spec2Pipeline.srctype:srctype.py:60 SRCTYAPT keyword not found in input; using SRCTYPE instead INFO stpipe.Spec2Pipeline.srctype:srctype.py:79 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:srctype.py:79 Input is a TSO exposure; setting SRCTYPE = POINT INFO stpipe.Spec2Pipeline.srctype:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_srctype.fits INFO stpipe.Spec2Pipeline.srctype:step.py:493 Step srctype done INFO stpipe.Spec2Pipeline.straylight:step.py:390 Step straylight running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.straylight:step.py:394 Step straylight parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'method': 'ModShepard', 'roi': 50, 'power': 1.0} INFO stpipe.Spec2Pipeline.straylight:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.straylight:step.py:493 Step straylight done INFO stpipe.Spec2Pipeline.fringe:step.py:390 Step fringe running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.fringe:step.py:394 Step fringe parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0'} INFO stpipe.Spec2Pipeline.fringe:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.fringe:step.py:493 Step fringe done INFO stpipe.Spec2Pipeline.pathloss:step.py:390 Step pathloss running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.pathloss:step.py:394 Step pathloss parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.pathloss:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.pathloss:step.py:493 Step pathloss done INFO stpipe.Spec2Pipeline.barshadow:step.py:390 Step barshadow running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.barshadow:step.py:394 Step barshadow parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} INFO stpipe.Spec2Pipeline.barshadow:step.py:424 Step skipped. INFO stpipe.Spec2Pipeline.barshadow:step.py:493 Step barshadow done INFO stpipe.Spec2Pipeline.photom:step.py:390 Step photom running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_srctype.fits>,). INFO stpipe.Spec2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:photom_step.py:33 Input is SlitModel DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits INFO stpipe.Spec2Pipeline.photom:photom_step.py:53 Using area reference file: N/A DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Spec2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:142 detector: NRCALONG INFO stpipe.Spec2Pipeline.photom:photom.py:143 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:143 exp_type: NRC_TSGRISM INFO stpipe.Spec2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:145 filter: F444W INFO stpipe.Spec2Pipeline.photom:photom.py:147 pupil: GRISMR INFO stpipe.Spec2Pipeline.photom:photom.py:147 pupil: GRISMR DEBUG stpipe.Spec2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0094.fits as <class 'jwst.datamodels.photom.NrcWfssPhotomModel'> DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Spec2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Spec2Pipeline.photom:photom.py:962 PIXAR_SR = 9.30710330396321e-14, PIXAR_A2 = 0.003959722950309959 DEBUG stpipe.Spec2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Spec2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Spec2Pipeline.photom:photom.py:714 PHOTMJSR value: 697.721 INFO stpipe.Spec2Pipeline.photom:photom.py:714 PHOTMJSR value: 697.721 INFO stpipe.Spec2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Spec2Pipeline.extract_1d:step.py:390 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Spec2Pipeline.extract_1d:step.py:394 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'x1dints', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:120 Input is a SlitModel INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:259 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:264 APCORR reference file name is "N/A" INFO stpipe.Spec2Pipeline.extract_1d:extract_1d_step.py:265 APCORR will NOT be applied DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4028 with background subtraction INFO stpipe.Spec2Pipeline.extract_1d:extract.py:4028 with background subtraction DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Spec2Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3511 All 2 integrations done INFO stpipe.Spec2Pipeline.extract_1d:extract.py:3511 All 2 integrations done DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Spec2Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Spec2Pipeline.extract_1d:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits INFO stpipe.Spec2Pipeline.extract_1d:step.py:493 Step extract_1d done INFO stpipe.Spec2Pipeline:calwebb_spec2.py:291 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong INFO stpipe.Spec2Pipeline:calwebb_spec2.py:134 Ending calwebb_spec2 INFO stpipe.Spec2Pipeline:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_calints.fits INFO stpipe.Spec2Pipeline:step.py:493 Step Spec2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsgrism/jw00721-o012_20191119t043909_tso3_001_asn.json HTTP/1.1" 200 2146 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:step.py:802 PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf INFO stpipe:step.py:810 PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:193 Opening jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. INFO stpipe.Tso3Pipeline:step.py:330 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:330 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:330 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:330 WhiteLightStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Tso3Pipeline:step.py:390 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721-o012_20191119t043909_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:394 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00721012001_03103_00001-seg001_nrcalong_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0056.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0042.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:57 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00721012001_03103_00001-seg001_nrcalong_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jw00721012001_03103_00001-seg001_nrcalong_calints.fits as <class 'jwst.datamodels.slit.SlitModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 2 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 6.856536865234375 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 2 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 12577 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131068 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131068 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 11632 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131063 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 131063 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:117 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:947 Saved model in jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:160 Extracting 1-D spectra ... INFO stpipe.Tso3Pipeline.extract_1d:step.py:390 Step extract_1d running with args (<SlitModel(2, 64, 2048) from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.extract_1d:step.py:394 Step extract_1d parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True} DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:120 Input is a SlitModel INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:259 Using EXTRACT1D reference file /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0/jwst_nircam_tsgrism_extract1d.json DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:264 APCORR reference file name is "N/A" INFO stpipe.Tso3Pipeline.extract_1d:extract_1d_step.py:265 APCORR will NOT be applied DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3337 Processing spectral order 1 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3374 Beginning loop over 2 integrations ... DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:439 Initial parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:440 dispaxis = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:441 spectral order = 1 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:442 initial xstart = 4 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:443 initial xstop = 2043 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:444 initial ystart = 31 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:445 initial ystop = 35 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:446 extract_width = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:447 initial src_coeff = None DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:448 initial bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:449 bkg_fit = median DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:450 bkg_order = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:451 smoothing_length = 0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:452 independent_var = pixel DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:453 use_source_posn = False DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1701 Updated parameters: DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1702 position_correction = 0.0 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1718 bkg_coeff = [[9.5], [19.5], [45.5], [55.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:1776 Converting extraction limits to [[30.5], [35.5]] INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4011 Using extraction limits: INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4024 xstart=4, xstop=2043, ystart=31, ystop=35 INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4028 with background subtraction INFO stpipe.Tso3Pipeline.extract_1d:extract.py:4028 with background subtraction DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.extract_1d:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3511 All 2 integrations done INFO stpipe.Tso3Pipeline.extract_1d:extract.py:3511 All 2 integrations done DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3646 TSO data, so copying times from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 DEBUG stpipe.Tso3Pipeline.extract_1d:extract.py:3672 Number of output spectra = 2; number of spectra for each integration = 1; number of integrations = 2 INFO stpipe.Tso3Pipeline.extract_1d:step.py:493 Step extract_1d done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:165 Performing white-light photometry ... INFO stpipe.Tso3Pipeline.white_light:step.py:390 Step white_light running with args (<MultiSpecModel from jw00721012001_03103_00001-seg001_nrcalong_calints.fits>,). INFO stpipe.Tso3Pipeline.white_light:step.py:394 Step white_light parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsgrism_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None} DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:40 norders = 1, sporders = [1], ntables_order = [2] DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. DEBUG stpipe.Tso3Pipeline.white_light:white_light.py:103 Times are from the INT_TIMES table. INFO stpipe.Tso3Pipeline.white_light:step.py:493 Step white_light done INFO stpipe.Tso3Pipeline:step.py:947 Saved model in jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits INFO stpipe.Tso3Pipeline:calwebb_tso3.py:186 Writing Level 3 photometry catalog jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv INFO stpipe.Tso3Pipeline:step.py:493 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_calints.fits HTTP/1.1" 200 7974720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[extract_2d] | 0.47 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_extract_2d.fits HTTP/1.1" 200 6920640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[flat_field] | 1.01 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_flat_field.fits HTTP/1.1" 200 25260480 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[o012_crfints] | 0.43 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_o012_crfints.fits HTTP/1.1" 200 7974720 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[srctype] | 0.50 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_srctype.fits HTTP/1.1" 200 6920640 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage2[x1dints] | 0.30 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721012001_03103_00001-seg001_nrcalong_x1dints.fits HTTP/1.1" 200 694080 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_x1dints | 0.31 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_x1dints.fits HTTP/1.1" 200 688320 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsgrism.py::test_nircam_tsgrism_stage3_whtlt | 0.12 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsgrism_stages/jw00721-o012_t004_nircam_f444w-grismr-subgrism256_whtlt.ecsv HTTP/1.1" 200 454 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[calints] | 10.35 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 14:05:40,505 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2022-01-29 14:05:40,518 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 14:05:40,519 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 14:05:40,520 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 14:05:40,521 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 14:05:40,521 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 14:05:40,522 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:05:40,522 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:40,522 - stpipe - INFO - OS: Linux 2022-01-29 14:05:40,656 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). 2022-01-29 14:05:40,659 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 14:05:40,710 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2022-01-29 14:05:40,722 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2022-01-29 14:05:40,725 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 14:05:40,725 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 14:05:40,725 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 14:05:40,725 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 14:05:40,725 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2022-01-29 14:05:40,727 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 14:05:40,727 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2022-01-29 14:05:40,728 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 14:05:40,730 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 14:05:40,732 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2022-01-29 14:05:40,733 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... 2022-01-29 14:05:40,906 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2022-01-29 14:05:40,907 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 14:05:41,187 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2022-01-29 14:05:41,187 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2022-01-29 14:05:41,187 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 14:05:41,229 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 14:05:41,354 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2022-01-29 14:05:41,355 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 14:05:42,930 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2022-01-29 14:05:42,951 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 14:05:43,076 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). 2022-01-29 14:05:43,077 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:43,106 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits 2022-01-29 14:05:43,106 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2022-01-29 14:05:43,171 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 14:05:43,171 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2022-01-29 14:05:43,171 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2022-01-29 14:05:43,171 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2022-01-29 14:05:43,172 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 14:05:44,050 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 14:05:44,052 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.97369 2022-01-29 14:05:44,065 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 14:05:44,065 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 2022-01-29 14:05:44,066 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 14:05:44,208 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits 2022-01-29 14:05:44,209 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 14:05:44,527 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf 2022-01-29 14:05:44,538 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 14:05:44,539 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 14:05:44,540 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 14:05:44,541 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 14:05:44,541 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 14:05:44,542 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:05:44,542 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:44,542 - stpipe - INFO - OS: Linux 2022-01-29 14:05:44,668 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). 2022-01-29 14:05:44,672 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 14:05:44,722 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] 2022-01-29 14:05:44,727 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. 2022-01-29 14:05:44,728 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 14:05:44,728 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 14:05:44,728 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 14:05:44,728 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 14:05:44,728 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. 2022-01-29 14:05:44,730 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 14:05:44,730 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. 2022-01-29 14:05:44,730 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 14:05:44,731 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 14:05:44,732 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 14:05:44,732 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. 2022-01-29 14:05:44,732 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 14:05:44,732 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 14:05:44,733 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 14:05:44,733 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 14:05:44,733 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 14:05:44,733 - stpipe.Image2Pipeline - INFO - Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2022-01-29 14:05:44,733 - stpipe.Image2Pipeline - INFO - Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... 2022-01-29 14:05:44,905 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2022-01-29 14:05:44,906 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 14:05:45,185 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2022-01-29 14:05:45,185 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 2022-01-29 14:05:45,185 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 14:05:45,229 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 14:05:45,363 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2022-01-29 14:05:45,364 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 14:05:45,598 - stpipe.Image2Pipeline.flat_field - INFO - Extracting matching subarray from flat 2022-01-29 14:05:45,619 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 14:05:45,742 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). 2022-01-29 14:05:45,743 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:45,775 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits 2022-01-29 14:05:45,775 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits 2022-01-29 14:05:45,842 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 14:05:45,842 - stpipe.Image2Pipeline.photom - INFO - detector: NRCB1 2022-01-29 14:05:45,842 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_TSIMAGE 2022-01-29 14:05:45,842 - stpipe.Image2Pipeline.photom - INFO - filter: F210M 2022-01-29 14:05:45,842 - stpipe.Image2Pipeline.photom - INFO - pupil: CLEAR 2022-01-29 14:05:45,903 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 14:05:45,905 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 4.97369 2022-01-29 14:05:45,916 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 14:05:45,916 - stpipe.Image2Pipeline - INFO - Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 2022-01-29 14:05:45,918 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 14:05:46,064 - stpipe.Image2Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits 2022-01-29 14:05:46,064 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 14:05:46,467 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf 2022-01-29 14:05:46,473 - stpipe - INFO - PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} 2022-01-29 14:05:46,850 - CRDS - ERROR - Error determining best reference for 'pars-whitelightstep' = parameter='META.EXPOSURE.TYPE [EXP_TYPE]' value='NRC_TSIMAGE' is not in ['NRC_TSGRISM'] 2022-01-29 14:05:47,115 - stpipe.Tso3Pipeline - INFO - Tso3Pipeline instance created. 2022-01-29 14:05:47,117 - stpipe.Tso3Pipeline.outlier_detection - INFO - OutlierDetectionStep instance created. 2022-01-29 14:05:47,117 - stpipe.Tso3Pipeline.tso_photometry - INFO - TSOPhotometryStep instance created. 2022-01-29 14:05:47,118 - stpipe.Tso3Pipeline.extract_1d - INFO - Extract1dStep instance created. 2022-01-29 14:05:47,119 - stpipe.Tso3Pipeline.white_light - INFO - WhiteLightStep instance created. 2022-01-29 14:05:47,119 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:47,119 - stpipe - INFO - OS: Linux 2022-01-29 14:05:47,241 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). 2022-01-29 14:05:47,244 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} 2022-01-29 14:05:47,373 - stpipe.Tso3Pipeline - INFO - Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] 2022-01-29 14:05:47,379 - stpipe.Tso3Pipeline - INFO - Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. 2022-01-29 14:05:47,380 - stpipe.Tso3Pipeline - INFO - Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. 2022-01-29 14:05:47,381 - stpipe.Tso3Pipeline - INFO - Starting calwebb_tso3... 2022-01-29 14:05:47,817 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2022-01-29 14:05:47,944 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 14:05:47,945 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 14:05:47,950 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2022-01-29 14:05:48,002 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2022-01-29 14:05:48,259 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 14:05:48,455 - stpipe.Tso3Pipeline - INFO - Performing outlier detection on input images ... 2022-01-29 14:05:48,593 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection running with args (<ModelContainer>,). 2022-01-29 14:05:48,595 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} 2022-01-29 14:05:48,599 - stpipe.Tso3Pipeline.outlier_detection - INFO - Performing outlier detection on 4 inputs 2022-01-29 14:05:48,651 - stpipe.Tso3Pipeline.outlier_detection - INFO - Generating median from 4 images 2022-01-29 14:05:48,906 - stpipe.Tso3Pipeline.outlier_detection - INFO - Step outlier_detection done 2022-01-29 14:05:48,907 - stpipe.Tso3Pipeline - INFO - Saving crfints products with updated DQ arrays ... 2022-01-29 14:05:49,048 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits 2022-01-29 14:05:49,189 - stpipe.Tso3Pipeline - INFO - Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits 2022-01-29 14:05:49,331 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). 2022-01-29 14:05:49,332 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2022-01-29 14:05:49,396 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2022-01-29 14:05:49,541 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). 2022-01-29 14:05:49,542 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} 2022-01-29 14:05:49,589 - stpipe.Tso3Pipeline.tso_photometry - INFO - Step tso_photometry done 2022-01-29 14:05:49,591 - stpipe.Tso3Pipeline - INFO - Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv 2022-01-29 14:05:49,600 - stpipe.Tso3Pipeline - INFO - Step Tso3Pipeline done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw00312006001_02102_00001-seg001_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits HTTP/1.1" 200 385920 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0002.asdf INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg002_nrcb1_rateints.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_rateints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Image2Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0100.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0003.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 84.677442101 -69.101068161 84.677457899 -69.100522688 84.675932777 -69.100514745 84.675916528 -69.101060208 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is CubeModel of exposure type NRC_TSIMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0345.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1985, subsize1=64, substrt2=1985, subsize2=64 INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat INFO stpipe.Image2Pipeline.flat_field:flat_field.py:169 Extracting matching subarray from flat DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:332 slice xstart=1984, xstop=2048, ystart=1984, ystop=2048 DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_rateints.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is CubeModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCB1 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_TSIMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F210M INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: CLEAR DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0090.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0025.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.22670041247461e-14, PIXAR_A2 = 0.00094735348247245 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 4.97369 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw00312006001_02102_00001-seg002_nrcb1_calints.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/tsimg/jw00312-o006_20191225t115310_tso3_001_asn.json HTTP/1.1" 200 2124 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe:step.py:802 PARS-OUTLIERDETECTIONSTEP parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-outlierdetectionstep_0001.asdf INFO stpipe:step.py:810 PARS-OUTLIERDETECTIONSTEP parameters are {'resample_data': False} DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-TSO3PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:193 Opening jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. DEBUG stpipe:pipeline.py:182 No PARS-TSO3PIPELINE reference files found. INFO stpipe.Tso3Pipeline:step.py:330 Tso3Pipeline instance created. INFO stpipe.Tso3Pipeline.outlier_detection:step.py:330 OutlierDetectionStep instance created. INFO stpipe.Tso3Pipeline.tso_photometry:step.py:330 TSOPhotometryStep instance created. INFO stpipe.Tso3Pipeline.extract_1d:step.py:330 Extract1dStep instance created. INFO stpipe.Tso3Pipeline.white_light:step.py:330 WhiteLightStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Tso3Pipeline:step.py:390 Step Tso3Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312-o006_20191225t115310_tso3_001_asn.json',). INFO stpipe.Tso3Pipeline:step.py:394 Step Tso3Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'scale_detection': False, 'steps': {'outlier_detection': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None}, 'tso_photometry': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False}, 'extract_1d': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'smoothing_length': None, 'bkg_fit': 'poly', 'bkg_order': None, 'bkg_sigma_clip': 3.0, 'log_increment': 50, 'subtract_background': None, 'use_source_posn': None, 'apply_apcorr': True}, 'white_light': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.ecsv', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'whtlt', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'min_wavelength': None, 'max_wavelength': None}}} DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. INFO stpipe.Tso3Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00312006001_02102_00001-seg001_nrcb1_calints.fits' reftypes = ['gain', 'readnoise'] INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for GAIN reference file is '/grp/crds/cache/references/jwst/jwst_nircam_gain_0053.fits'. INFO stpipe.Tso3Pipeline:pipeline.py:288 Prefetch for READNOISE reference file is '/grp/crds/cache/references/jwst/jwst_nircam_readnoise_0039.fits'. INFO stpipe.Tso3Pipeline:calwebb_tso3.py:57 Starting calwebb_tso3... DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg001_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:container.py:215 Files accepted for processing jw00312006001_02102_00001-seg002_nrcb1_calints.fits: DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg001_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0/jw00312006001_02102_00001-seg002_nrcb1_calints.fits as <class 'jwst.datamodels.cube.CubeModel'> DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:fits_support.py:484 Skipping FITS keyword updating except for BinTableHDU and its associated header keywords. DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:493 Step outlier_detection done DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline:calwebb_tso3.py:97 Performing outlier detection on input images ... INFO stpipe.Tso3Pipeline.outlier_detection:step.py:390 Step outlier_detection running with args (<ModelContainer>,). INFO stpipe.Tso3Pipeline.outlier_detection:step.py:394 Step outlier_detection parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'outlier_detection', 'search_output_file': False, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'weight_type': 'ivm', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'nlow': 0, 'nhigh': 0, 'maskpt': 0.7, 'grow': 1, 'snr': '5.0 4.0', 'scale': '1.2 0.7', 'backg': 0.0, 'save_intermediate_results': False, 'resample_data': False, 'good_bits': '~DO_NOT_USE', 'scale_detection': False, 'allowed_memory': None} DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:191 Performing outlier detection on 4 inputs DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection_step.py:153 Using OutlierDetection class for outlier_detection DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:177 Defined output product suffix as: _outlier_i2d.fits DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:284 Percentage of pixels with low weight: 23.9013671875 INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images INFO stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:296 Generating median from 4 images DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1172 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1186 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1152 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:446 Pixels in input DQ: 1076 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 DEBUG stpipe.Tso3Pipeline.outlier_detection:outlier_detection.py:447 Pixels in cr_mask: 4096 INFO stpipe.Tso3Pipeline.outlier_detection:step.py:493 Step outlier_detection done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:117 Saving crfints products with updated DQ arrays ... INFO stpipe.Tso3Pipeline:step.py:947 Saved model in jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline:step.py:947 Saved model in jw00312006001_02102_00001-seg002_nrcb1_o006_crfints.fits INFO stpipe.Tso3Pipeline.tso_photometry:step.py:390 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg001_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:394 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:493 Step tso_photometry done INFO stpipe.Tso3Pipeline.tso_photometry:step.py:390 Step tso_photometry running with args (<CubeModel(4, 64, 64) from jw00312006001_02102_00001-seg002_nrcb1_calints.fits>,). INFO stpipe.Tso3Pipeline.tso_photometry:step.py:394 Step tso_photometry parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'tso_photometry', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_tsimg_run_pipelines0', 'save_catalog': False} DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:50 Reference file name = /grp/crds/cache/references/jwst/jwst_nircam_tsophot_0001.asdf DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:64 radius = 3.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:65 radius_inner = 4.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:66 radius_outer = 5.0 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:67 xcenter = 27.96 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry_step.py:68 ycenter = 53.11 DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table DEBUG stpipe.Tso3Pipeline.tso_photometry:tso_photometry.py:158 Times are from the INT_TIMES table INFO stpipe.Tso3Pipeline.tso_photometry:step.py:493 Step tso_photometry done INFO stpipe.Tso3Pipeline:calwebb_tso3.py:186 Writing Level 3 photometry catalog jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv INFO stpipe.Tso3Pipeline:step.py:493 Step Tso3Pipeline done -------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_calints.fits HTTP/1.1" 200 17256960 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimg_stage2[o006_crfints] | 0.91 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312006001_02102_00001-seg001_nrcb1_o006_crfints.fits HTTP/1.1" 200 17256960 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_tsimg.py::test_nircam_tsimage_stage3_phot | 0.18 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/test_nircam_tsimg_stage23/jw00312-o006_t001_nircam_f210m-clear-sub64p_phot.ecsv HTTP/1.1" 200 5201 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nicam_wfsimage_noextras | 25.04 | |
|
-----------------------------Captured stderr setup------------------------------ 2022-01-29 14:05:55,400 - stpipe - INFO - PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf 2022-01-29 14:05:55,429 - stpipe.Image2Pipeline - INFO - Image2Pipeline instance created. 2022-01-29 14:05:55,430 - stpipe.Image2Pipeline.bkg_subtract - INFO - BackgroundStep instance created. 2022-01-29 14:05:55,431 - stpipe.Image2Pipeline.assign_wcs - INFO - AssignWcsStep instance created. 2022-01-29 14:05:55,431 - stpipe.Image2Pipeline.flat_field - INFO - FlatFieldStep instance created. 2022-01-29 14:05:55,432 - stpipe.Image2Pipeline.photom - INFO - PhotomStep instance created. 2022-01-29 14:05:55,433 - stpipe.Image2Pipeline.resample - INFO - ResampleStep instance created. 2022-01-29 14:05:55,433 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:05:55,433 - stpipe - INFO - OS: Linux 2022-01-29 14:05:55,654 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). 2022-01-29 14:05:55,658 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} 2022-01-29 14:05:55,906 - stpipe.Image2Pipeline - INFO - Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] 2022-01-29 14:05:55,917 - stpipe.Image2Pipeline - INFO - Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. 2022-01-29 14:05:55,919 - stpipe.Image2Pipeline - INFO - Prefetch for CAMERA reference file is 'N/A'. 2022-01-29 14:05:55,919 - stpipe.Image2Pipeline - INFO - Prefetch for COLLIMATOR reference file is 'N/A'. 2022-01-29 14:05:55,920 - stpipe.Image2Pipeline - INFO - Prefetch for DFLAT reference file is 'N/A'. 2022-01-29 14:05:55,920 - stpipe.Image2Pipeline - INFO - Prefetch for DISPERSER reference file is 'N/A'. 2022-01-29 14:05:55,920 - stpipe.Image2Pipeline - INFO - Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. 2022-01-29 14:05:55,921 - stpipe.Image2Pipeline - INFO - Prefetch for FFLAT reference file is 'N/A'. 2022-01-29 14:05:55,921 - stpipe.Image2Pipeline - INFO - Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. 2022-01-29 14:05:55,923 - stpipe.Image2Pipeline - INFO - Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. 2022-01-29 14:05:55,924 - stpipe.Image2Pipeline - INFO - Prefetch for FORE reference file is 'N/A'. 2022-01-29 14:05:55,924 - stpipe.Image2Pipeline - INFO - Prefetch for FPA reference file is 'N/A'. 2022-01-29 14:05:55,924 - stpipe.Image2Pipeline - INFO - Prefetch for IFUFORE reference file is 'N/A'. 2022-01-29 14:05:55,924 - stpipe.Image2Pipeline - INFO - Prefetch for IFUPOST reference file is 'N/A'. 2022-01-29 14:05:55,925 - stpipe.Image2Pipeline - INFO - Prefetch for IFUSLICER reference file is 'N/A'. 2022-01-29 14:05:55,925 - stpipe.Image2Pipeline - INFO - Prefetch for MSA reference file is 'N/A'. 2022-01-29 14:05:55,925 - stpipe.Image2Pipeline - INFO - Prefetch for OTE reference file is 'N/A'. 2022-01-29 14:05:55,925 - stpipe.Image2Pipeline - INFO - Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Prefetch for REGIONS reference file is 'N/A'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Prefetch for SFLAT reference file is 'N/A'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Prefetch for SPECWCS reference file is 'N/A'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Prefetch for WAVELENGTHRANGE reference file is 'N/A'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Prefetch for WFSSBKG reference file is 'N/A'. 2022-01-29 14:05:55,927 - stpipe.Image2Pipeline - INFO - Starting calwebb_image2 ... 2022-01-29 14:05:55,940 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00001_nrca4 2022-01-29 14:05:55,940 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00001_nrca4_rate.fits ... 2022-01-29 14:05:56,387 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2022-01-29 14:05:56,388 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 14:05:56,583 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2022-01-29 14:05:56,675 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2022-01-29 14:05:56,675 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 2022-01-29 14:05:56,675 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 14:05:56,739 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 14:05:56,954 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2022-01-29 14:05:56,955 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 14:05:58,812 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 14:05:59,037 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2022-01-29 14:05:59,038 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:05:59,067 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits 2022-01-29 14:05:59,068 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2022-01-29 14:05:59,183 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 14:05:59,184 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2022-01-29 14:05:59,184 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 14:05:59,184 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2022-01-29 14:05:59,184 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2022-01-29 14:05:59,653 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 14:05:59,656 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 38.4903 2022-01-29 14:05:59,698 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 14:05:59,927 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). 2022-01-29 14:05:59,928 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:05:59,928 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2022-01-29 14:05:59,930 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 14:05:59,930 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00001_nrca4 2022-01-29 14:05:59,931 - stpipe.Image2Pipeline - INFO - Processing product jw00632003002_03105_00002_nrca4 2022-01-29 14:05:59,931 - stpipe.Image2Pipeline - INFO - Working on input jw00632003002_03105_00002_nrca4_rate.fits ... 2022-01-29 14:06:00,366 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2022-01-29 14:06:00,367 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} 2022-01-29 14:06:00,566 - stpipe.Image2Pipeline.assign_wcs - WARNING - Expected to find one matching row in table, found 0. 2022-01-29 14:06:00,661 - stpipe.Image2Pipeline.assign_wcs - INFO - Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2022-01-29 14:06:00,661 - stpipe.Image2Pipeline.assign_wcs - INFO - assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 2022-01-29 14:06:00,661 - stpipe.Image2Pipeline.assign_wcs - INFO - COMPLETED assign_wcs 2022-01-29 14:06:00,723 - stpipe.Image2Pipeline.assign_wcs - INFO - Step assign_wcs done 2022-01-29 14:06:00,940 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2022-01-29 14:06:00,941 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} 2022-01-29 14:06:01,371 - stpipe.Image2Pipeline.flat_field - INFO - Step flat_field done 2022-01-29 14:06:01,599 - stpipe.Image2Pipeline.photom - INFO - Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2022-01-29 14:06:01,600 - stpipe.Image2Pipeline.photom - INFO - Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} 2022-01-29 14:06:01,628 - stpipe.Image2Pipeline.photom - INFO - Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits 2022-01-29 14:06:01,628 - stpipe.Image2Pipeline.photom - INFO - Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits 2022-01-29 14:06:01,737 - stpipe.Image2Pipeline.photom - INFO - Using instrument: NIRCAM 2022-01-29 14:06:01,737 - stpipe.Image2Pipeline.photom - INFO - detector: NRCA4 2022-01-29 14:06:01,737 - stpipe.Image2Pipeline.photom - INFO - exp_type: NRC_IMAGE 2022-01-29 14:06:01,737 - stpipe.Image2Pipeline.photom - INFO - filter: F212N 2022-01-29 14:06:01,737 - stpipe.Image2Pipeline.photom - INFO - pupil: WLP8 2022-01-29 14:06:01,802 - stpipe.Image2Pipeline.photom - INFO - Pixel area map copied to output. 2022-01-29 14:06:01,804 - stpipe.Image2Pipeline.photom - INFO - PHOTMJSR value: 38.4903 2022-01-29 14:06:01,840 - stpipe.Image2Pipeline.photom - INFO - Step photom done 2022-01-29 14:06:02,064 - stpipe.Image2Pipeline.resample - INFO - Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). 2022-01-29 14:06:02,066 - stpipe.Image2Pipeline.resample - INFO - Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} 2022-01-29 14:06:02,066 - stpipe.Image2Pipeline.resample - INFO - Step skipped. 2022-01-29 14:06:02,067 - stpipe.Image2Pipeline.resample - INFO - Step resample done 2022-01-29 14:06:02,068 - stpipe.Image2Pipeline - INFO - Finished processing product jw00632003002_03105_00002_nrca4 2022-01-29 14:06:02,069 - stpipe.Image2Pipeline - INFO - ... ending calwebb_image2 2022-01-29 14:06:02,306 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00001_nrca4_cal.fits 2022-01-29 14:06:02,531 - stpipe.Image2Pipeline - INFO - Saved model in jw00632003002_03105_00002_nrca4_cal.fits 2022-01-29 14:06:02,532 - stpipe.Image2Pipeline - INFO - Step Image2Pipeline done 2022-01-29 14:06:02,990 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2022-01-29 14:06:02,990 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:06:02,990 - stpipe - INFO - OS: Linux 2022-01-29 14:06:03,145 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). 2022-01-29 14:06:03,146 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} 2022-01-29 14:06:03,160 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json 2022-01-29 14:06:03,160 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2022-01-29 14:06:03,349 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 2022-01-29 14:06:03,349 - stpipe.WfsCombine - INFO - do_refine: False 2022-01-29 14:06:03,349 - stpipe.WfsCombine - INFO - flip_dithers: True 2022-01-29 14:06:03,356 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: -3.04 -2.05 2022-01-29 14:06:03,542 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2022-01-29 14:06:03,542 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2022-01-29 14:06:03,733 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: 3.13 2.05 2022-01-29 14:06:03,733 - stpipe.WfsCombine - INFO - x,y offset in integer pixels from WCS: 3 2 2022-01-29 14:06:04,219 - stpipe.WfsCombine - INFO - Final x, y offset in pixels: 3 2 2022-01-29 14:06:04,414 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits 2022-01-29 14:06:04,418 - stpipe.WfsCombine - INFO - Step WfsCombine done 2022-01-29 14:06:05,068 - stpipe.WfsCombine - INFO - WfsCombineStep instance created. 2022-01-29 14:06:05,068 - stpipe - INFO - Hostname: jwcalibdev.stsci.edu 2022-01-29 14:06:05,068 - stpipe - INFO - OS: Linux 2022-01-29 14:06:05,287 - stpipe.WfsCombine - INFO - Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). 2022-01-29 14:06:05,288 - stpipe.WfsCombine - INFO - Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} 2022-01-29 14:06:05,297 - stpipe.WfsCombine - INFO - Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json 2022-01-29 14:06:05,297 - stpipe.WfsCombine - INFO - The number of pairs of input files: 1 2022-01-29 14:06:05,475 - stpipe.WfsCombine - INFO - Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine 2022-01-29 14:06:05,475 - stpipe.WfsCombine - INFO - do_refine: True 2022-01-29 14:06:05,475 - stpipe.WfsCombine - INFO - flip_dithers: True 2022-01-29 14:06:05,481 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: -3.04 -2.05 2022-01-29 14:06:05,655 - stpipe.WfsCombine - INFO - File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits 2022-01-29 14:06:05,656 - stpipe.WfsCombine - INFO - File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits 2022-01-29 14:06:05,866 - stpipe.WfsCombine - INFO - From the WCS the x,y pixel offsets are: 3.13 2.05 2022-01-29 14:06:05,866 - stpipe.WfsCombine - INFO - x,y offset in integer pixels from WCS: 3 2 2022-01-29 14:06:06,165 - stpipe.WfsCombine - INFO - Approximate centroid of image 1 PSF has x,y : 1700 1713 2022-01-29 14:06:16,511 - stpipe.WfsCombine - INFO - From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 2022-01-29 14:06:16,953 - stpipe.WfsCombine - INFO - Final x, y offset in pixels: -5 0 2022-01-29 14:06:17,135 - stpipe.WfsCombine - INFO - Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits 2022-01-29 14:06:17,136 - stpipe.WfsCombine - INFO - Step WfsCombine done -------------------------------Captured log setup------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image2_001_asn.json HTTP/1.1" 200 1618 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00001_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632003002_03105_00002_nrca4_rate.fits HTTP/1.1" 200 83940480 DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:pipeline.py:161 Retrieving all substep parameters from CRDS DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:pipeline.py:170 Retrieving pipeline PARS-IMAGE2PIPELINE parameters from CRDS DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe:pipeline.py:179 PARS-IMAGE2PIPELINE parameters found: /grp/crds/cache/references/jwst/jwst_nircam_pars-image2pipeline_0001.asdf INFO stpipe.Image2Pipeline:step.py:330 Image2Pipeline instance created. INFO stpipe.Image2Pipeline.bkg_subtract:step.py:330 BackgroundStep instance created. INFO stpipe.Image2Pipeline.assign_wcs:step.py:330 AssignWcsStep instance created. INFO stpipe.Image2Pipeline.flat_field:step.py:330 FlatFieldStep instance created. INFO stpipe.Image2Pipeline.photom:step.py:330 PhotomStep instance created. INFO stpipe.Image2Pipeline.resample:step.py:330 ResampleStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.Image2Pipeline:step.py:390 Step Image2Pipeline running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image2_001_asn.json',). INFO stpipe.Image2Pipeline:step.py:394 Step Image2Pipeline parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_bsub': False, 'steps': {'bkg_subtract': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_combined_background': False, 'sigma': 3.0, 'maxiters': None}, 'assign_wcs': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55}, 'flat_field': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False}, 'photom': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None}, 'resample': {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': True, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None}}} DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:209 Filtering datasets based on allowed exptypes ['science']: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:container.py:215 Files accepted for processing jw00632003002_03105_00001_nrca4_rate.fits: DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline:pipeline.py:280 Prefetching reference files for dataset: 'jw00632003002_03105_00001_nrca4_rate.fits' reftypes = ['area', 'camera', 'collimator', 'dflat', 'disperser', 'distortion', 'fflat', 'filteroffset', 'flat', 'fore', 'fpa', 'ifufore', 'ifupost', 'ifuslicer', 'msa', 'ote', 'photom', 'regions', 'sflat', 'specwcs', 'wavelengthrange', 'wfssbkg'] INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for AREA reference file is '/grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for CAMERA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for COLLIMATOR reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISPERSER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for DISTORTION reference file is '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FILTEROFFSET reference file is '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FLAT reference file is '/grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for FPA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUFORE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUPOST reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for IFUSLICER reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for MSA reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for OTE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for PHOTOM reference file is '/grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for REGIONS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SFLAT reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for SPECWCS reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WAVELENGTHRANGE reference file is 'N/A'. INFO stpipe.Image2Pipeline:pipeline.py:288 Prefetch for WFSSBKG reference file is 'N/A'. INFO stpipe.Image2Pipeline:calwebb_image2.py:49 Starting calwebb_image2 ... INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00001_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00001_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643482814 -72.047891333 5.643201230 -72.030311701 5.586537887 -72.030260709 5.586146163 -72.047933020 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': None, 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00001_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:424 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00001_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:58 Processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:125 Working on input jw00632003002_03105_00002_nrca4_rate.fits ... DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:193 Opening jw00632003002_03105_00002_nrca4_rate.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. INFO stpipe.Image2Pipeline.assign_wcs:step.py:390 Step assign_wcs running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.assign_wcs:step.py:394 Step assign_wcs parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'assign_wcs', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'sip_approx': True, 'sip_max_pix_error': 0.25, 'sip_degree': None, 'sip_max_inv_pix_error': 0.25, 'sip_inv_degree': None, 'sip_npoints': 32, 'slit_y_low': -0.55, 'slit_y_high': 0.55} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:assign_wcs_step.py:81 reference files used in assign_wcs: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': 'N/A', 'regions': 'N/A', 'wavelengthrange': 'N/A', 'camera': 'N/A', 'collimator': 'N/A', 'disperser': 'N/A', 'fore': 'N/A', 'fpa': 'N/A', 'msa': 'N/A', 'ote': 'N/A', 'ifupost': 'N/A', 'ifufore': 'N/A', 'ifuslicer': 'N/A'} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:nircam.py:45 reference files used in NIRCAM WCS pipeline: {'distortion': '/grp/crds/cache/references/jwst/jwst_nircam_distortion_0101.asdf', 'filteroffset': '/grp/crds/cache/references/jwst/jwst_nircam_filteroffset_0004.asdf', 'specwcs': None, 'regions': None, 'wavelengthrange': None, 'camera': None, 'collimator': None, 'disperser': None, 'fore': None, 'fpa': None, 'msa': None, 'ote': None, 'ifupost': None, 'ifufore': None, 'ifuslicer': None} DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. WARNING stpipe.Image2Pipeline.assign_wcs:reffile_utils.py:450 Expected to find one matching row in table, found 0. DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.assign_wcs:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:util.py:957 Update S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:81 assign_wcs updated S_REGION to POLYGON ICRS 5.643397064 -72.047873722 5.643115480 -72.030294090 5.586452192 -72.030243098 5.586060468 -72.047915408 INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:assign_wcs.py:93 COMPLETED assign_wcs INFO stpipe.Image2Pipeline.assign_wcs:step.py:493 Step assign_wcs done INFO stpipe.Image2Pipeline.flat_field:step.py:390 Step flat_field running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.flat_field:step.py:394 Step flat_field parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'flat_field', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'save_interpolated_flat': False, 'user_supplied_flat': None, 'inverse': False} DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:72 Input is ImageModel of exposure type NRC_IMAGE DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:197 Using FLAT reference file: /grp/crds/cache/references/jwst/jwst_nircam_flat_0330.fits DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type FFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type SFLAT DEBUG stpipe.Image2Pipeline.flat_field:flat_field_step.py:199 No reference found for type DFLAT DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:flat_field.py:111 Flat field correction for non-NIRSpec modes. DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:112 ref substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 DEBUG stpipe.Image2Pipeline.flat_field:reffile_utils.py:165 sci substrt1=1, subsize1=2048, substrt2=1, subsize2=2048 INFO stpipe.Image2Pipeline.flat_field:step.py:493 Step flat_field done INFO stpipe.Image2Pipeline.photom:step.py:390 Step photom running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.photom:step.py:394 Step photom parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': False, 'skip': False, 'suffix': 'photom', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'inverse': False, 'source_type': None} DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:photom_step.py:33 Input is ImageModel DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom_step.py:52 Using photom reference file: /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits INFO stpipe.Image2Pipeline.photom:photom_step.py:53 Using area reference file: /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:141 Using instrument: NIRCAM INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:142 detector: NRCA4 INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:143 exp_type: NRC_IMAGE INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:145 filter: F212N INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 INFO stpipe.Image2Pipeline.photom:photom.py:147 pupil: WLP8 DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_photom_0091.fits as <class 'jwst.datamodels.photom.NrcImgPhotomModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:fits_support.py:695 No ASDF information found. Cannot skip updating from FITS headers. DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:193 Opening /grp/crds/cache/references/jwst/jwst_nircam_area_0022.fits as <class 'jwst.datamodels.pixelarea.PixelAreaModel'> DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.Image2Pipeline.photom:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. INFO stpipe.Image2Pipeline.photom:photom.py:940 Pixel area map copied to output. DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:962 PIXAR_SR = 2.24692956375445e-14, PIXAR_A2 = 0.000955960009333921 DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam DEBUG stpipe.Image2Pipeline.photom:photom.py:521 Starting cal_nircam INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:photom.py:714 PHOTMJSR value: 38.4903 INFO stpipe.Image2Pipeline.photom:step.py:493 Step photom done INFO stpipe.Image2Pipeline.resample:step.py:390 Step resample running with args (<ImageModel(2048, 2048) from jw00632003002_03105_00002_nrca4_rate.fits>,). INFO stpipe.Image2Pipeline.resample:step.py:394 Step resample parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': True, 'suffix': 'i2d', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'pixfrac': 1.0, 'kernel': 'square', 'fillval': 'INDEF', 'weight_type': 'ivm', 'pixel_scale_ratio': 1.0, 'single': False, 'blendheaders': True, 'allowed_memory': None} INFO stpipe.Image2Pipeline.resample:step.py:424 Step skipped. INFO stpipe.Image2Pipeline.resample:step.py:493 Step resample done INFO stpipe.Image2Pipeline:calwebb_image2.py:164 Finished processing product jw00632003002_03105_00002_nrca4 INFO stpipe.Image2Pipeline:calwebb_image2.py:80 ... ending calwebb_image2 INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:947 Saved model in jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.Image2Pipeline:step.py:493 Step Image2Pipeline done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_001_asn.json HTTP/1.1" 200 2458 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:330 WfsCombineStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.WfsCombine:step.py:390 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json',). INFO stpipe.WfsCombine:step.py:394 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': False, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} INFO stpipe.WfsCombine:wfs_combine_step.py:32 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_001_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:33 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05 INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: False INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: 3 2 DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:947 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits INFO stpipe.WfsCombine:step.py:493 Step WfsCombine done DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/nircam/wavefront/jw00632-o003_20191210t194815_wfs-image3_002_asn.json HTTP/1.1" 200 2465 DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:193 Opening jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:step.py:330 WfsCombineStep instance created. INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:299 Hostname: jwcalibdev.stsci.edu INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe:cmdline.py:300 OS: Linux INFO stpipe.WfsCombine:step.py:390 Step WfsCombine running with args ('/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json',). INFO stpipe.WfsCombine:step.py:394 Step WfsCombine parameters are: {'pre_hooks': [], 'post_hooks': [], 'output_file': None, 'output_dir': None, 'output_ext': '.fits', 'output_use_model': False, 'output_use_index': True, 'save_results': True, 'skip': False, 'suffix': 'wfscmb', 'search_output_file': True, 'input_dir': '/data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0', 'do_refine': True, 'flip_dithers': True, 'psf_size': 100, 'blur_size': 10, 'n_size': 2} INFO stpipe.WfsCombine:wfs_combine_step.py:32 Using input table: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632-o003_20191210t194815_wfs-image3_002_asn.json INFO stpipe.WfsCombine:wfs_combine_step.py:33 The number of pairs of input files: 1 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:65 Output file: jw00632-o003_t001_nircam_f212n-wlp8-nrca4_{suffix}-05_refine INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:66 do_refine: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:67 flip_dithers: True INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: -3.04 -2.05 DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:193 Opening /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits as <class 'jwst.datamodels.image.ImageModel'> DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:util.py:175 Environmental "SKIP_FITS_UPDATE" cannot be found. Using default value of "None". DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:709 FITS hash matches. Skipping FITS updating. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. DEBUG stpipe.WfsCombine:fits_support.py:482 Skipping FITS updating completely. INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:103 File 1 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00002_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits INFO stpipe.WfsCombine:wfs_combine.py:104 File 2 to combine: /data1/jenkins/workspace/Notebooks/jwst_validation_notebooks_spacetelescope/tmp/pytest-of-iraf/pytest-2/test_nircam_wfs_run_pipelines0/jw00632003002_03105_00001_nrca4_cal.fits DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:295 From the WCS the x,y pixel offsets are: 3.13 2.05 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:169 x,y offset in integer pixels from WCS: 3 2 INFO stpipe.WfsCombine:wfs_combine.py:191 Approximate centroid of image 1 PSF has x,y : 1700 1713 INFO stpipe.WfsCombine:wfs_combine.py:191 Approximate centroid of image 1 PSF has x,y : 1700 1713 INFO stpipe.WfsCombine:wfs_combine.py:217 From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 INFO stpipe.WfsCombine:wfs_combine.py:217 From the refined offsets calculation,the x,y changes in ofsets are: -8.01 -2.01 DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: -5 0 INFO stpipe.WfsCombine:wfs_combine.py:119 Final x, y offset in pixels: -5 0 DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "STRICT_VALIDATION" cannot be found. Using default value of "False". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". DEBUG stpipe.WfsCombine:util.py:175 Environmental "VALIDATE_ON_ASSIGNMENT" cannot be found. Using default value of "True". INFO stpipe.WfsCombine:step.py:947 Saved model in jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits INFO stpipe.WfsCombine:step.py:493 Step WfsCombine done | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal1] | 2.76 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00001_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[cal2] | 2.67 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632003002_03105_00002_nrca4_cal.fits HTTP/1.1" 200 117532800 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb1] | 1.59 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05.fits HTTP/1.1" 200 50394240 | |||
| Passed | miniconda3/envs/jwst_validation_notebooks/lib/python3.9/site-packages/jwst/regtest/test_nircam_wfs.py::test_nircam_wfsimage[wfscmb2] | 1.33 | |
|
-------------------------------Captured log call-------------------------------- DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/ HTTP/1.1" 302 0 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /ui/ HTTP/1.1" 200 1196 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:1001 Starting new HTTPS connection (1): bytesalad.stsci.edu:443 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 DEBUG stpipe:connectionpool.py:456 https://bytesalad.stsci.edu:443 "GET /artifactory/jwst-pipeline/dev/truth/nircam/test_wfs-image2and3/jw00632-o003_t001_nircam_f212n-wlp8-nrca4_wfscmb-05_refine.fits HTTP/1.1" 200 50394240 | |||